regex: simplify the {,} repetition parsing logic
[oweals/musl.git] / 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 }