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