index
:
c
master
non-posix
implementation of system interfaces from POSIX.1
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
unistd
/
nice.c
blob: b406860cc5c778df2befdd05d89d1a92cc143d27 (
plain
)
1
2
3
4
5
6
7
8
9
10
#include <unistd.h> int nice(int incr) { return incr; } /* XOPEN(4) */