fix signedness of UINT32_MAX and UINT64_MAX at the preprocessor level
[musl] / src / time / nanosleep.c
1 #include <time.h>
2 #include "syscall.h"
3 #include "libc.h"
4
5 int nanosleep(const struct timespec *req, struct timespec *rem)
6 {
7         return syscall_cp(SYS_nanosleep, req, rem);
8 }