math: fix two fma issues (only affects non-nearest rounding mode, x86)
[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 }