musl-tcc/src/sched/sched_getparam.c

9 lines
153 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_getparam(pid_t pid, struct sched_param *param)
{
return __syscall_ret(-ENOSYS);
}