d741f66bcdfaf056a7f0efb1ae51377c12ac4e53
[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 }