blob: ba234154a125fd92c41588e4b16375c05c19e7d8 [file] [log] [blame]
#include <errno.h>
#include <sched.h>
int sched_getparam(pid_t pid, struct sched_param* param) {
errno = ENOSYS;
return -1;
}