Sign in
cobalt
/
cobalt
/
07081467c3d00b04a6a1162e0566a5a8b9cfe2d5
/
.
/
third_party
/
musl
/
src
/
signal
/
setitimer.c
blob: 21b1f45da9b7a87a67568e20991d1f4b73188f0a [
file
] [
log
] [
blame
]
#include
<sys/time.h>
#include
"syscall.h"
int
setitimer
(
int
which
,
const
struct
itimerval
*
restrict
new
,
struct
itimerval
*
restrict old
)
{
return
syscall
(
SYS_setitimer
,
which
,
new
,
old
);
}