summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/ia64/__nice.c
blob: 012ea26288f981e7e1c37c916bd2423880917c6c (plain)
1
2
3
4
5
6
#include <sys/resource.h>

int nice(int x) {
  if (setpriority(PRIO_PROCESS,0,x)) return -1;
  return getpriority(PRIO_PROCESS,0);
}