Sign in
mojo
/
mojo-tools
/
339e142934dd2c1fa7f3e69b3b08fc1c04bc4f1f
/
.
/
fusl
/
src
/
linux
/
settimeofday.c
blob: 15c18c637972f4a62a86666f6ad865d626487edf [
file
]
#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
);
}