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