update elf.h with powerpc64 elfv2 abi related macros
[musl.git] / src / signal / setitimer.c
blob21b1f45da9b7a87a67568e20991d1f4b73188f0a
1 #include <sys/time.h>
2 #include "syscall.h"
4 int setitimer(int which, const struct itimerval *restrict new, struct itimerval *restrict old)
6 return syscall(SYS_setitimer, which, new, old);