Sign in
mojo
/
mojo-tools
/
dc998703fec2d972e1d2f4b8736018310649553c
/
.
/
fusl
/
src
/
misc
/
setpriority.c
blob: 3f023c21dd63848cd626d32d56a3a96194cf78bf [
file
]
#include
<sys/resource.h>
#include
"syscall.h"
int
setpriority
(
int
which
,
id_t
who
,
int
prio
)
{
return
syscall
(
SYS_setpriority
,
which
,
who
,
prio
);
}