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