summaryrefslogtreecommitdiff
path: root/lib/fnmatch.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-06-22 18:03:40 +0000
committerJim Meyering <jim@meyering.net>2002-06-22 18:03:40 +0000
commit8965df82d19cf5b9dcfbd6625921cb89dc08707e (patch)
treedbf023d059ee3cd0a57f0182acd4facb6269e816 /lib/fnmatch.c
parent453257fa71a1a7ce3f96f3f2573c4ba94c3a7a0b (diff)
downloadcoreutils-8965df82d19cf5b9dcfbd6625921cb89dc08707e.tar.xz
(ISASCII, ISPRINT): Undefine, to avoid warning about
redefinition due to Solaris5.6's definition in /usr/include/sys/euc.h.
Diffstat (limited to 'lib/fnmatch.c')
-rw-r--r--lib/fnmatch.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/fnmatch.c b/lib/fnmatch.c
index 1b498e5f3..452edc063 100644
--- a/lib/fnmatch.c
+++ b/lib/fnmatch.c
@@ -103,6 +103,7 @@ extern int fnmatch (const char *pattern, const char *string, int flags);
#if defined _LIBC || !defined __GNU_LIBRARY__ || !HAVE_FNMATCH_GNU
+# undef ISASCII /* defined in Solaris5.6's /usr/include/sys/euc.h */
# if defined STDC_HEADERS || !defined isascii
# define ISASCII(c) 1
# else
@@ -120,6 +121,7 @@ extern int fnmatch (const char *pattern, const char *string, int flags);
# define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
# endif
+# undef ISPRINT /* defined in Solaris5.6's /usr/include/sys/euc.h */
# define ISPRINT(c) (ISASCII (c) && isprint (c))
# define ISDIGIT(c) (ISASCII (c) && isdigit (c))
# define ISALNUM(c) (ISASCII (c) && isalnum (c))