about summary refs log tree commit diff
path: root/arch/generic/bits/dirent.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/generic/bits/dirent.h')
-rw-r--r--arch/generic/bits/dirent.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/generic/bits/dirent.h b/arch/generic/bits/dirent.h
new file mode 100644
index 00000000..c845fe82
--- /dev/null
+++ b/arch/generic/bits/dirent.h
@@ -0,0 +1,11 @@
+#define _DIRENT_HAVE_D_RECLEN
+#define _DIRENT_HAVE_D_OFF
+#define _DIRENT_HAVE_D_TYPE
+
+struct dirent {
+	ino_t d_ino;
+	off_t d_off;
+	unsigned short d_reclen;
+	unsigned char d_type;
+	char d_name[256];
+};