2011-02-12 00:22:29 -05:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include "syscall.h"
|
|
|
|
|
|
|
|
int setitimer(int which, const struct itimerval *new, struct itimerval *old)
|
|
|
|
{
|
2011-03-20 00:16:43 -04:00
|
|
|
return syscall(SYS_setitimer, which, new, old);
|
2011-02-12 00:22:29 -05:00
|
|
|
}
|