diff options
Diffstat (limited to 'lib/libc/unistd/nice.c')
| -rw-r--r-- | lib/libc/unistd/nice.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/libc/unistd/nice.c b/lib/libc/unistd/nice.c new file mode 100644 index 00000000..3b240c93 --- /dev/null +++ b/lib/libc/unistd/nice.c @@ -0,0 +1,8 @@ +#include <unistd.h> +#include <syscall.h> + +int nice(int incr) +{ + // TODO: needs getpriority and setpriority from sys/resouce.h + return 0; +} |
