blob: 3b2375809a7bd946ba2d420859a47b49d87414a7 [file] [log] [blame]
#include <sys/time.h>
#include "syscall.h"
int setitimer(int which, const struct itimerval *new, struct itimerval *old)
{
return syscall(SYS_setitimer, which, new, old);
}