1#include <errno.h>
2#include <sched.h>
3
4int sched_rr_get_interval(pid_t pid, struct timespec* ts) {
5    errno = ENOSYS;
6    return -1;
7}
8