summaryrefslogtreecommitdiff
path: root/src/unistd/nice.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/nice.c')
-rw-r--r--src/unistd/nice.c7
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);
+}