blob: 968d93e905054ed537d0eb8fd2cc1075ed52c9d0 [file] [log] [blame]
#include <errno.h>
#include <sched.h>
int sched_getparam(pid_t pid, struct sched_param* param) {
errno = ENOSYS;
return -1;
}