repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mips: add vdso support
[musl.git]
/
src
/
time
/
time.c
blob
4b95e7527d440b05b55ca100b465cd79feff652e
1
#include <time.h>
2
#include
"syscall.h"
3
4
int
__clock_gettime
(
clockid_t
,
struct
timespec
*);
5
6
time_t
time
(
time_t
*
t
)
7
{
8
struct
timespec ts
;
9
__clock_gettime
(
CLOCK_REALTIME
, &
ts
);
10
if
(
t
) *
t
=
ts
.
tv_sec
;
11
return
ts
.
tv_sec
;
12
}