1 #include <errno.h>
2 #include <sys/time.h>
3 
setitimer(int which,const struct itimerval * restrict new,struct itimerval * restrict old)4 int setitimer(int which, const struct itimerval* restrict new, struct itimerval* restrict old) {
5     errno = ENOSYS;
6     return -1;
7 }
8