Sign in
cobalt
/
cobalt
/
97b64f26fb12c9eab352139c26f0b01d1cb6d0b9
/
.
/
third_party
/
musl
/
src
/
unistd
/
readlinkat.c
blob: 9af45cd5a47d1e23c673806704a2cf07d75d948f [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
ssize_t
readlinkat
(
int
fd
,
const
char
*
restrict path
,
char
*
restrict buf
,
size_t
bufsize
)
{
return
syscall
(
SYS_readlinkat
,
fd
,
path
,
buf
,
bufsize
);
}