1#include <errno.h>
2#include <sched.h>
3
4int sched_setparam(pid_t pid, const struct sched_param* param) {
5    errno = ENOSYS;
6    return -1;
7}
8