blob: 3098cdf4d15f34b636f5104dba1ab0e6a5e91370 [file] [log] [blame]
#include <sys/resource.h>
#include "syscall.h"
int setpriority(int which, id_t who, int prio)
{
return syscall(SYS_setpriority, which, who, prio);
}