OSDN Git Service

document riscv64 support in INSTALL document
[android-x86/external-musl-libc.git] / 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_cp(SYS_nanosleep, req, rem);
7 }