summaryrefslogtreecommitdiff
path: root/arch/generic
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2020-01-25 23:08:55 -0500
committerRich Felker <dalias@aerifal.cx>2020-01-25 23:08:55 -0500
commit614c9e7b1eecb71c5718c34f1724e8758cbe3c27 (patch)
treec2533a1a4a20392851586d52bc8456c2d20b1ebe /arch/generic
parent83350eb17b9cb355e3f08b0340c4f1e8c437fac9 (diff)
downloadmusl-614c9e7b1eecb71c5718c34f1724e8758cbe3c27.tar.gz
move struct dirent to bits header, allow NAME_MAX to vary
this is not necessary for linux but is a simple, inexpensive change to make that facilitates ports to systems where NAME_MAX needs to be longer.
Diffstat (limited to 'arch/generic')
-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];
+};