Sign in
mojo
/
mojo-tools
/
7615ee57250e71eb370a9ad808dbcfba2028eec8
/
.
/
fusl
/
src
/
misc
/
setpriority.c
blob: 3f023c21dd63848cd626d32d56a3a96194cf78bf [
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
);
}