1#include <errno.h>
2#include <time.h>
3
4int clock_nanosleep(clockid_t clk, int flags, const struct timespec* req, struct timespec* rem) {
5    return ENOSYS;
6}
7