#include #include #include "syscall.h" #define IS32BIT(x) !((x)+0x80000000ULL>>32) int setitimer(int which, const struct itimerval *restrict new, struct itimerval *restrict old) { return syscall(SYS_setitimer, which, new, old); }