prevent CNAME/PTR parsing from reading data past the response end
[musl] / src / signal / x32 / 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 }