global cleanup to use the new syscall interface
[musl] / src / signal / getitimer.c
1 #include <sys/time.h>
2 #include "syscall.h"
3
4 int getitimer(int which, struct itimerval *old)
5 {
6         return syscall(SYS_getitimer, which, old);
7 }