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