Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
time
/
nanosleep.c
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
);
}