1#include <errno.h>
2#include <sched.h>
3
4int sched_getscheduler(pid_t pid) {
5    errno = ENOSYS;
6    return -1;
7}
8