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