Sign in
android
/
platform
/
external
/
musl
/
refs/heads/android13-d4-release
/
.
/
src
/
linux
/
getdents.c
blob: 796c1e5c92499a1b0b914e3e6d5d865272026e7c [
file
] [
log
] [
blame
] [
edit
]
#define
_BSD_SOURCE
#include
<dirent.h>
#include
<limits.h>
#include
"syscall.h"
int
getdents
(
int
fd
,
struct
dirent
*
buf
,
size_t
len
)
{
if
(
len
>
INT_MAX
)
len
=
INT_MAX
;
return
syscall
(
SYS_getdents
,
fd
,
buf
,
len
);
}
weak_alias
(
getdents
,
getdents64
);