Sign in
android
/
platform
/
external
/
musl
/
0b44a0315b47dd8eced9f3b7f31580cf14bbfc01
/
.
/
src
/
unistd
/
nice.c
blob: 4b28ef41fec1bb45531a491284267a5032bca604 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
nice
(
int
inc
)
{
return
syscall1
(
__NR_nice
,
inc
);
}