diff options
author | Rich Felker <dalias@aerifal.cx> | 2020-01-25 23:08:55 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2020-01-25 23:08:55 -0500 |
commit | 614c9e7b1eecb71c5718c34f1724e8758cbe3c27 (patch) | |
tree | c2533a1a4a20392851586d52bc8456c2d20b1ebe /arch | |
parent | 83350eb17b9cb355e3f08b0340c4f1e8c437fac9 (diff) | |
download | musl-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')
-rw-r--r-- | arch/generic/bits/dirent.h | 11 |
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]; +}; |