Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
refs/heads/master
/
.
/
src
/
signal
/
getitimer.c
blob: 8a8046a76b5c6511b8b8a81614622a39dd6ced97 [
file
] [
edit
]
#include
<sys/time.h>
#include
"syscall.h"
int
getitimer
(
int
which
,
struct
itimerval
*
old
)
{
return
syscall
(
SYS_getitimer
,
which
,
old
);
}