diff options
author | Rostislav Skudnov <rostislav@tuxera.com> | 2018-01-12 17:06:03 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-01-12 14:26:59 -0500 |
commit | 1bc10ffeaa7c7ce44b3e214e02e302642511c7c7 (patch) | |
tree | d48553774b4c3ffd171f7c2c22a45c35bce84e1b | |
parent | b64539ae06aa91a407359238f4e909adb9bfab3d (diff) | |
download | musl-1bc10ffeaa7c7ce44b3e214e02e302642511c7c7.tar.gz musl-1bc10ffeaa7c7ce44b3e214e02e302642511c7c7.tar.bz2 musl-1bc10ffeaa7c7ce44b3e214e02e302642511c7c7.tar.xz musl-1bc10ffeaa7c7ce44b3e214e02e302642511c7c7.zip |
add _DIRENT_HAVE_D_* macros to dirent.h
-rw-r--r-- | include/dirent.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/dirent.h b/include/dirent.h index 88d3c3cf..e0a8fe6a 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -17,6 +17,10 @@ extern "C" { typedef struct __dirstream DIR; +#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; |