change ldso path file logic to replace rather than add to search path
[oweals/musl.git] / src / sched / sched_setparam.c
1 #include <sched.h>
2 #include "syscall.h"
3
4 int sched_setparam(pid_t pid, const struct sched_param *param)
5 {
6         static const struct sched_param def;
7         return syscall(SYS_sched_setparam, pid, &def);
8 }