blob: 3445b7f80b1a862576026ef97d65606f38094418 [file] [log] [blame]
#include <time.h>
#include "syscall.h"
#include "libc.h"
int nanosleep(const struct timespec* req, struct timespec* rem) {
return syscall_cp(SYS_nanosleep, req, rem);
}