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
powerpc-sf longjmp clobbering of val argument
[musl.git]
/
src
/
misc
/
setpriority.c
blob
3098cdf4d15f34b636f5104dba1ab0e6a5e91370
1
#include <sys/resource.h>
2
#include
"syscall.h"
3
4
int
setpriority
(
int
which
,
id_t who
,
int
prio
)
5
{
6
return
syscall
(
SYS_setpriority
,
which
,
who
,
prio
);
7
}