blob: a0cb169d18509ce53b7d070f9c0501904672c275 [file] [log] [blame]
#include <errno.h>
#include <sched.h>
int sched_get_priority_max(int policy) {
errno = ENOSYS;
return -1;
}
int sched_get_priority_min(int policy) {
errno = ENOSYS;
return -1;
}