blob: abf872ad1199e25fb5815be224c00366960131b2 [file] [log] [blame]
#include <sys/time.h>
#include "syscall.h"
int setitimer(int which,
const struct itimerval* restrict new,
struct itimerval* restrict old) {
return syscall(SYS_setitimer, which, new, old);
}