aboutsummaryrefslogtreecommitdiffstats
path: root/support/regex.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2019-03-24 21:21:42 +0200
committerArnold D. Robbins <arnold@skeeve.com>2019-03-24 21:21:42 +0200
commitaced49eee334d9905208cda470d1cb14393613a2 (patch)
tree8cc136604c66040ff95cf513e5333169cca226bb /support/regex.c
parentfadddc026c7a3d9e664c65ff3f3895af9ba28359 (diff)
downloadegawk-aced49eee334d9905208cda470d1cb14393613a2.tar.gz
egawk-aced49eee334d9905208cda470d1cb14393613a2.tar.bz2
egawk-aced49eee334d9905208cda470d1cb14393613a2.zip
Sync support files from GNULIB.
Diffstat (limited to 'support/regex.c')
-rw-r--r--support/regex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/support/regex.c b/support/regex.c
index a80e740c..d4459f7b 100644
--- a/support/regex.c
+++ b/support/regex.c
@@ -1,5 +1,5 @@
/* Extended regular expression matching and search library.
- Copyright (C) 2002-2018 Free Software Foundation, Inc.
+ Copyright (C) 2002-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
@@ -20,10 +20,10 @@
#ifndef _LIBC
# include <libc-config.h>
-# if (__GNUC__ == 4 && 6 <= __GNUC_MINOR__) || 4 < __GNUC__
+# if __GNUC_PREREQ (4, 6)
# pragma GCC diagnostic ignored "-Wsuggest-attribute=pure"
# endif
-# if (__GNUC__ == 4 && 3 <= __GNUC_MINOR__) || 4 < __GNUC__
+# if __GNUC_PREREQ (4, 3)
# pragma GCC diagnostic ignored "-Wold-style-definition"
# pragma GCC diagnostic ignored "-Wtype-limits"
# endif