author | Paul Eggert <eggert@cs.ucla.edu> | 2021-02-24 19:36:06 (GMT) |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2021-02-24 19:36:33 (GMT) |
commit | 5c7fc16b455ba87ffd1fab50905f96bc20c7b05b (patch) (side-by-side diff) | |
tree | 2f0f88b063fd4af75cbcd0aa7c313097c2fbfe5e | |
parent | 494fea035166a4947db72bd23161faa1f1733708 (diff) | |
download | gnulib-master.tar.gz gnulib-master.tar.bz2 |
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | lib/glob.in.h | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -4,6 +4,7 @@ Inspired by Tom Tromey’s report for RHEL 6 in: https://lists.gnu.org/r/bug-gnulib/2021-02/msg00088.html * lib/glob.c [!_LIBC]: Include libc-config.h, not just config.h + * lib/glob.in.h: Include libc-config.h only if needed. 2021-02-21 Bruno Haible <bruno@clisp.org> diff --git a/lib/glob.in.h b/lib/glob.in.h index d4270d7..d8b03c5 100644 --- a/lib/glob.in.h +++ b/lib/glob.in.h @@ -70,7 +70,9 @@ typedef int (*_gl_glob_errfunc_fn) (const char *, int); /* Preparations for including the standard GNU C Library header. */ +# ifndef __attribute_maybe_unused__ # include <libc-config.h> +# endif # include <stddef.h> |