diff options
Diffstat (limited to 'src/unistd/nice.c')
-rw-r--r-- | src/unistd/nice.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/unistd/nice.c b/src/unistd/nice.c new file mode 100644 index 00000000..4b28ef41 --- /dev/null +++ b/src/unistd/nice.c @@ -0,0 +1,7 @@ +#include <unistd.h> +#include "syscall.h" + +int nice(int inc) +{ + return syscall1(__NR_nice, inc); +} |