Sign in
akaros
/
upstream
/
ecef0caf4f46613c68388ebcfc1407ea0a1b4f1b
/
.
/
tools
/
compilers
/
gcc-glibc
/
glibc-2.19-akaros
/
sysdeps
/
akaros
/
getdents.c
blob: 2e3bff2a9d1f5aa2344eec5b44f4b5fd28338287 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
<dirent.h>
ssize_t
internal_function __getdents
(
int
fd
,
char
*
buf
,
size_t
len
)
{
return
__libc_read
(
fd
,
buf
,
len
);
}
strong_alias
(
__getdents
,
__getdents64
)