summaryrefslogtreecommitdiff
path: root/src/signal/getitimer.c
blob: 8a8046a76b5c6511b8b8a81614622a39dd6ced97 (plain) (blame)
1
2
3
4
5
6
7
#include <sys/time.h>
#include "syscall.h"

int getitimer(int which, struct itimerval *old)
{
	return syscall(SYS_getitimer, which, old);
}