Sign in
mojo
/
mojo-tools
/
a02505467f01880befaf0b32a25b97975b47a726
/
.
/
fusl
/
src
/
signal
/
getitimer.c
blob: eac53ef05d184f83b97f6acf5ac99176f8665252 [
file
] [
log
] [
blame
]
#include
<sys/time.h>
#include
"syscall.h"
int
getitimer
(
int
which
,
struct
itimerval
*
old
)
{
return
syscall
(
SYS_getitimer
,
which
,
old
);
}