master
1#include <time.h>
2#include "syscall.h"
3
4int nanosleep(const struct timespec *req, struct timespec *rem)
5{
6	return __syscall_ret(-__clock_nanosleep(CLOCK_REALTIME, 0, req, rem));
7}