avoid changing NaNs in sqrt (x86 asm) to satisfy c99 f.9 recommendation
[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 }