change underlying type of clock_t to be uniform and match ABI
[musl] / src / linux / settimeofday.c
1 #include <sys/time.h>
2 #include "syscall.h"
3
4 int settimeofday(const struct timeval *tv, void *tz)
5 {
6         return syscall(SYS_settimeofday, tv, 0);
7 }