From e72c26d75110c7a33ecc9dbd0daaf99ff4cfade6 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 1 May 2000 23:43:43 +0000 Subject: [PATCH] Linux dirent structure definition. --- sysdeps/unix/sysv/aix/linux/linux-dirent.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 sysdeps/unix/sysv/aix/linux/linux-dirent.h diff --git a/sysdeps/unix/sysv/aix/linux/linux-dirent.h b/sysdeps/unix/sysv/aix/linux/linux-dirent.h new file mode 100644 index 0000000..935ffda --- /dev/null +++ b/sysdeps/unix/sysv/aix/linux/linux-dirent.h @@ -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! */ + }; -- 2.7.4