From fd149e632e5236828f1550581c9cce1388711abf Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Mon, 2 Feb 2015 14:20:24 -0700 Subject: [PATCH] Need to include inttypes.h for SIZE_MAX --- lib/util/glob.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/util/glob.c b/lib/util/glob.c index 4d0e47d74..b53b05e4b 100644 --- a/lib/util/glob.c +++ b/lib/util/glob.c @@ -78,6 +78,9 @@ #ifdef HAVE_UNISTD_H # include #endif /* HAVE_UNISTD_H */ +#ifdef HAVE_INTTYPES_H +# include +#endif #include #ifdef HAVE_DIRENT_H # include -- 2.40.0