Sign in
mojo
/
mojo-tools
/
5c465e84ee8642a71dcb6719d132f53537617841
/
.
/
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
);
}