summaryrefslogtreecommitdiff
path: root/lib/libc/sched/sched_getparam.c
blob: 0c9ae00e2b8737dabeac708859c93066b764ceb2 (plain)
1
2
3
4
5
6
7
8
9
#include <errno.h>
#include <sched.h>
#include <sys/cdefs.h>

int sched_getparam(pid_t __unused pid, struct sched_param *__unused param)
{
	errno = ENOSYS;
	return -1;
}