mirror of
https://github.com/fluencelabs/musl
synced 2025-06-05 19:11:34 +00:00
8 lines
98 B
C
8 lines
98 B
C
|
#include <unistd.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int nice(int inc)
|
||
|
{
|
||
|
return syscall1(__NR_nice, inc);
|
||
|
}
|