blob: 83548845e9c7f5725bb749753014ee9cb442bc48 [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;
}