1 #include <sys/time.h> 2 #include <errno.h> 3 #include "syscall.h" 4 5 #define IS32BIT(x) !((x)+0x80000000ULL>>32) 6 setitimer(int which,const struct itimerval * restrict new,struct itimerval * restrict old)7int setitimer(int which, const struct itimerval *restrict new, struct itimerval *restrict old) 8 { 9 return syscall(SYS_setitimer, which, new, old); 10 } 11