summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/direct.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/direct.h')
-rw-r--r--sysdeps/unix/sysv/direct.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/direct.h b/sysdeps/unix/sysv/direct.h
new file mode 100644
index 0000000000..dc1d77beed
--- /dev/null
+++ b/sysdeps/unix/sysv/direct.h
@@ -0,0 +1,10 @@
+struct direct
+ {
+ unsigned short int d_fileno;
+ char d_name[14];
+ };
+
+#define D_NAMLEN(d) \
+ ((d)->d_name[13] == '\0' ? strlen ((d)->d_name) : 14)
+
+#define D_RECLEN(d) (sizeof (*(d)))