Sign in
cobalt
/
cobalt
/
d2bc3b69d823bbaf46d1c4355b23486a85a6d791
/
.
/
third_party
/
musl
/
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
);
}