1/* Although Alpha defines _DIRENT_MATCHES_DIRENT64, 'struct dirent' and
2 'struct dirent64' have slight different internal layout with d_ino
3 being a __ino_t on non-LFS version with an extra __pad field which should
4 be zeroed. */
5
6#include <dirent.h>
7/* It suppresses the __getdents64 to __getdents alias. */
8#undef _DIRENT_MATCHES_DIRENT64
9#define _DIRENT_MATCHES_DIRENT64 0
10#include <sysdeps/unix/sysv/linux/getdents64.c>
11

source code of glibc/sysdeps/unix/sysv/linux/alpha/getdents64.c