summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/nice.c
blob: 3b240c93a77a196d16bc27f54385e556ab59a8b6 (plain)
1
2
3
4
5
6
7
8
#include <unistd.h>
#include <syscall.h>

int nice(int incr)
{
	// TODO: needs getpriority and setpriority from sys/resouce.h
	return 0;
}