Sign in
mojo
/
mojo
/
006e65581006bc0328bc0c5c184587b4cd41f75c
/
.
/
fusl
/
src
/
linux
/
settimeofday.c
blob: 15c18c637972f4a62a86666f6ad865d626487edf [
file
] [
log
] [
blame
]
#define
_BSD_SOURCE
#include
<sys/time.h>
#include
"syscall.h"
int
settimeofday
(
const
struct
timeval
*
tv
,
const
struct
timezone
*
tz
)
{
return
syscall
(
SYS_settimeofday
,
tv
,
0
);
}