musl-tcc/src/sched/sched_setscheduler.c

9 lines
174 B
C

#include <sched.h>
#include <errno.h>
#include "syscall.h"
int sched_setscheduler(pid_t pid, int sched, const struct sched_param *param)
{
return __syscall_ret(-ENOSYS);
}