setitimer.c 174 B

1234567
  1. #include <sys/time.h>
  2. #include "syscall.h"
  3. int setitimer(int which, const struct itimerval *new, struct itimerval *old)
  4. {
  5. return syscall(SYS_setitimer, which, new, old);
  6. }