fix powerpc setjmp/longjmp to save/restore float regs; enlarge/align jmp_buf
[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 }