musl/src/signal/setitimer.c

8 lines
174 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#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);
2011-02-12 00:22:29 -05:00
}