syslog: revert LOG_FAC/LOG_FACMASK changes
[musl.git] / src / sched / sched_get_priority_max.c
blob30ae5100e1de4e5f863f16c131279851be3fbca5
1 #include <sched.h>
2 #include "syscall.h"
4 int sched_get_priority_max(int policy)
6 return syscall(SYS_sched_get_priority_max, policy);
9 int sched_get_priority_min(int policy)
11 return syscall(SYS_sched_get_priority_min, policy);