Sign in
cobalt
/
cobalt
/
25399f97090f8a86f56525c38486080cb2747250
/
.
/
src
/
third_party
/
musl
/
src
/
time
/
nanosleep.c
blob: a2ff4839425d772fce611b3439960cde0e176226 [
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
);
}