3b2375809a7bd946ba2d420859a47b49d87414a7
[musl] / src / signal / setitimer.c
1 #include <sys/time.h>
2 #include "syscall.h"
3
4 int setitimer(int which, const struct itimerval *new, struct itimerval *old)
5 {
6         return syscall(SYS_setitimer, which, new, old);
7 }