mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-19 11:30:06 +00:00
089b2b8ad8
variable name, so new a libc with new requirements won't fail to notice an insufficient Linux version.
15 lines
298 B
C
15 lines
298 B
C
/* Get `struct dirent' from the Linux kernel header file. */
|
|
|
|
#ifndef _DIRENTRY_H
|
|
#define _DIRENTRY_H
|
|
|
|
#include <linux/dirent.h>
|
|
|
|
#define d_fileno d_ino /* backwards compatibility */
|
|
|
|
#undef _DIRENT_HAVE_D_NAMLEN
|
|
#define _DIRENT_HAVE_D_RECLEN
|
|
#define _DIRENT_HAVE_D_OFF
|
|
|
|
#endif /* _DIRENTRY_H */
|