overhaul internally-public declarations using wrapper headers
[musl.git] / src / time / nanosleep.c
bloba2ff4839425d772fce611b3439960cde0e176226
1 #include <time.h>
2 #include "syscall.h"
3 #include "libc.h"
5 int nanosleep(const struct timespec *req, struct timespec *rem)
7 return syscall_cp(SYS_nanosleep, req, rem);