repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
overhaul internally-public declarations using wrapper headers
[musl.git]
/
src
/
time
/
nanosleep.c
blob
a2ff4839425d772fce611b3439960cde0e176226
1
#include <time.h>
2
#include
"syscall.h"
3
#include
"libc.h"
4
5
int
nanosleep
(
const struct
timespec
*
req
,
struct
timespec
*
rem
)
6
{
7
return
syscall_cp
(
SYS_nanosleep
,
req
,
rem
);
8
}