blob: 1bf604ebbfc066ea13cb1d5bc629ee585d36bbb9 [file] [log] [blame]
#include <errno.h>
#include <sys/resource.h>
int setpriority(int which, id_t who, int prio) {
errno = ENOSYS;
return -1;
}