Sign in
mojo
/
mojo-tools
/
83365b19d08baa9ba3f254866a59b01eba496f4f
/
.
/
fusl
/
src
/
time
/
nanosleep.c
blob: a2ff4839425d772fce611b3439960cde0e176226 [
file
]
#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
);
}