Sign in
android
/
platform
/
external
/
musl
/
aa59d7880b1194c821029d464f93561a2600d57e
/
.
/
src
/
misc
/
setpriority.c
blob: 3098cdf4d15f34b636f5104dba1ab0e6a5e91370 [
file
] [
log
] [
blame
]
#include
<sys/resource.h>
#include
"syscall.h"
int
setpriority
(
int
which
,
id_t
who
,
int
prio
)
{
return
syscall
(
SYS_setpriority
,
which
,
who
,
prio
);
}