7 int settimeofday(const struct timeval
*tv
, const struct timezone
*tz
)
10 if (tv
->tv_usec
>= 1000000ULL) return __syscall_ret(-EINVAL
);
11 return clock_settime(CLOCK_REALTIME
, &((struct timespec
){
12 .tv_sec
= tv
->tv_sec
, .tv_nsec
= tv
->tv_usec
* 1000}));