diff options
Diffstat (limited to 'libc-top-half/musl/src/signal/x32/setitimer.c')
-rw-r--r-- | libc-top-half/musl/src/signal/x32/setitimer.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/signal/x32/setitimer.c b/libc-top-half/musl/src/signal/x32/setitimer.c new file mode 100644 index 0000000..21b1f45 --- /dev/null +++ b/libc-top-half/musl/src/signal/x32/setitimer.c @@ -0,0 +1,7 @@ +#include <sys/time.h> +#include "syscall.h" + +int setitimer(int which, const struct itimerval *restrict new, struct itimerval *restrict old) +{ + return syscall(SYS_setitimer, which, new, old); +} |