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
in clock_getres, check for null pointer before storing result
[musl.git]
/
src
/
unistd
/
readlinkat.c
blob
9af45cd5a47d1e23c673806704a2cf07d75d948f
1
#include <unistd.h>
2
#include
"syscall.h"
3
4
ssize_t
readlinkat
(
int
fd
,
const char
*
restrict path
,
char
*
restrict buf
,
size_t
bufsize
)
5
{
6
return
syscall
(
SYS_readlinkat
,
fd
,
path
,
buf
,
bufsize
);
7
}