Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
be82e122bf37fdcd1766d1ed220f0300b30ab6a3
/
.
/
src
/
unistd
/
readlinkat.c
blob: 8171050dace289e490067d5a3ee47792f9d127a3 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
readlinkat
(
int
fd
,
const
char
*
path
,
char
*
buf
,
size_t
bufsize
)
{
return
syscall4
(
__NR_readlinkat
,
fd
,
(
long
)
path
,
(
long
)
buf
,
bufsize
);
}