remove unused __getdents, rename and move file
[musl] / src / linux / getdents.c
1 #include <dirent.h>
2 #include "syscall.h"
3
4 int getdents(int fd, struct dirent *buf, size_t len)
5 {
6         return syscall(SYS_getdents, fd, buf, len);
7 }
8
9 LFS64(getdents);