musl-tcc/src/sched/sched_getscheduler.c

9 lines
130 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <sched.h>
#include <errno.h>
#include "syscall.h"
int sched_getscheduler(pid_t pid)
{
return __syscall_ret(-ENOSYS);
}