summaryrefslogtreecommitdiff
path: root/include/glob.h
diff options
context:
space:
mode:
authorSzabolcs Nagy <nsz@port70.net>2014-09-05 21:43:49 +0200
committerRich Felker <dalias@aerifal.cx>2014-09-05 16:03:07 -0400
commit7ff804269bb0594431308ad328239aeeb5ceb057 (patch)
tree253cb7207dc001ad5a66d28f56250bd93351287e /include/glob.h
parent36c30c4ddd92ec3a058d54aac31a5734be6380f8 (diff)
downloadmusl-7ff804269bb0594431308ad328239aeeb5ceb057.tar.gz
fix macros for LFS *64_t types in sys/stat.h, sys/types.h, glob.h
there is no blksize64_t (blksize_t is always long) but there are fsblkcnt64_t and fsfilcnt64_t types in sys/stat.h and sys/types.h. and glob.h missed glob64_t.
Diffstat (limited to 'include/glob.h')
-rw-r--r--include/glob.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/glob.h b/include/glob.h
index 9fbbaa65..76f6c1c6 100644
--- a/include/glob.h
+++ b/include/glob.h
@@ -39,6 +39,7 @@ void globfree(glob_t *);
#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
#define glob64 glob
#define globfree64 globfree
+#define glob64_t glob_t
#endif
#ifdef __cplusplus