]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/time/nanosleep.c
1e6f39224a0324729d3ea837f1324d4a4a323534
[wasi-libc.git] / libc-top-half / 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_cp(SYS_nanosleep, req, rem);
7 }