repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
iconv: add aliases for GBK
[musl.git]
/
src
/
signal
/
x32
/
setitimer.c
blob
21b1f45da9b7a87a67568e20991d1f4b73188f0a
1
#include <sys/time.h>
2
#include
"syscall.h"
3
4
int
setitimer
(
int
which
,
const struct
itimerval
*
restrict
new
,
struct
itimerval
*
restrict old
)
5
{
6
return
syscall
(
SYS_setitimer
,
which
,
new
,
old
);
7
}