blob: 1d661d642a8a2eb48ecfad7e4dac9bb803b63856 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* 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 */
|