xref: /aosp_15_r20/external/musl/src/sched/sched_getscheduler.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <sched.h>
2 #include <errno.h>
3 #include "syscall.h"
4 
sched_getscheduler(pid_t pid)5 int sched_getscheduler(pid_t pid)
6 {
7 	return __syscall_ret(-ENOSYS);
8 }
9