Sign in
mojo
/
mojo-tools
/
4446eb0e2d7a3e9bca844dc343aa4094eaae9a97
/
.
/
fusl
/
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
);
}