implement stub versions of sched_*
[musl] / src / sched / sched_get_priority_max.c
1 #include <sched.h>
2
3 int sched_get_priority_max(int policy)
4 {
5         return 0;
6 }
7
8 int sched_get_priority_min(int policy)
9 {
10         return 0;
11 }