Sign in
cobalt
/
cobalt
/
07081467c3d00b04a6a1162e0566a5a8b9cfe2d5
/
.
/
third_party
/
musl
/
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
);
}