From 614c9e7b1eecb71c5718c34f1724e8758cbe3c27 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 25 Jan 2020 23:08:55 -0500 Subject: 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. --- include/dirent.h | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'include/dirent.h') diff --git a/include/dirent.h b/include/dirent.h index e0a8fe6a..650ecf64 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -15,19 +15,9 @@ extern "C" { #include -typedef struct __dirstream DIR; - -#define _DIRENT_HAVE_D_RECLEN -#define _DIRENT_HAVE_D_OFF -#define _DIRENT_HAVE_D_TYPE +#include -struct dirent { - ino_t d_ino; - off_t d_off; - unsigned short d_reclen; - unsigned char d_type; - char d_name[256]; -}; +typedef struct __dirstream DIR; #define d_fileno d_ino -- cgit v1.2.1