]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/sched/sched_setparam.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / sched / sched_setparam.c
1 #include <sched.h>
2 #include <errno.h>
3 #include "syscall.h"
4
5 int sched_setparam(pid_t pid, const struct sched_param *param)
6 {
7 return __syscall_ret(-ENOSYS);
8 }