implement the remaining clock_* interfaces
[musl] / src / time / clock_nanosleep.c
1 #define SYSCALL_RETURN_ERRNO
2 #include <time.h>
3 #include "syscall.h"
4
5 int clock_nanosleep(clockid_t clk, int flags, const struct timespec *req, struct timespec *rem)
6 {
7         return syscall4(__NR_clock_nanosleep, clk, flags, (long)req, (long)rem);
8 }