Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
fusl
/
src
/
linux
/
settimeofday.c
blob: 52c32e03f85f6f8c7c5c9b33e5bed0f7dd8094df [
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
);
}