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