]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Linux dirent structure definition.
authorUlrich Drepper <drepper@redhat.com>
Mon, 1 May 2000 23:43:43 +0000 (23:43 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 1 May 2000 23:43:43 +0000 (23:43 +0000)
sysdeps/unix/sysv/aix/linux/linux-dirent.h [new file with mode: 0644]

diff --git a/sysdeps/unix/sysv/aix/linux/linux-dirent.h b/sysdeps/unix/sysv/aix/linux/linux-dirent.h
new file mode 100644 (file)
index 0000000..935ffda
--- /dev/null
@@ -0,0 +1,19 @@
+#include "linuxtypes.h"
+
+struct linuxdirent
+  {
+    __linux_ino_t d_ino;
+    __linux_off_t d_off;
+    unsigned short int d_reclen;
+    unsigned char d_type;
+    char d_name[256];           /* We must not include limits.h! */
+  };
+
+struct linuxdirent64
+  {
+    __linux_ino64_t d_ino;
+    __linux_off64_t d_off;
+    unsigned short int d_reclen;
+    unsigned char d_type;
+    char d_name[256];           /* We must not include limits.h! */
+  };