refactor thrd_sleep and nanosleep in terms of clock_nanosleep
[musl] / src / time / nanosleep.c
1 #include <time.h>
2 #include "syscall.h"
3
4 int nanosleep(const struct timespec *req, struct timespec *rem)
5 {
6         return __syscall_ret(-__clock_nanosleep(CLOCK_REALTIME, 0, req, rem));
7 }