Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
musl
/
src
/
dirent
/
__getdents.c
blob: 1acd5a696aa66fa8dc51ce38086aa3f80d7e0bce [
file
] [
log
] [
blame
]
#include
<dirent.h>
#include
"syscall.h"
#include
"libc.h"
int
__getdents
(
int
fd
,
struct
dirent
*
buf
,
size_t
len
)
{
return
syscall
(
SYS_getdents
,
fd
,
buf
,
len
);
}
weak_alias
(
__getdents
,
getdents
);
LFS64
(
getdents
);