musl/src/signal/setitimer.c
2011-03-20 00:16:43 -04:00

8 lines
174 B
C

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