remove __SYSCALL_SSLEN arch macro in favor of using public _NSIG
[musl] / src / sched / sched_getscheduler.c
1 #include <sched.h>
2 #include <errno.h>
3 #include "syscall.h"
4
5 int sched_getscheduler(pid_t pid)
6 {
7         return __syscall_ret(-ENOSYS);
8 }