summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-08-23 15:05:54 +0000
committerJim Meyering <jim@meyering.net>2005-08-23 15:05:54 +0000
commit8de5019cf5116537cf941b9192ea719f7a746b64 (patch)
tree411372c3379abc467b71f694a5b74f928e2c0b30 /src
parent4fb8e0f3c475b8b5a39252bc40141c98894b1835 (diff)
downloadcoreutils-8de5019cf5116537cf941b9192ea719f7a746b64.tar.xz
Remove unnecessary parens in `#if defined (SYMBOL)' expressions.
Diffstat (limited to 'src')
-rw-r--r--src/system.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/system.h b/src/system.h
index 00beeb01d..b9aeec0aa 100644
--- a/src/system.h
+++ b/src/system.h
@@ -375,7 +375,7 @@ initialize_exit_failure (int status)
character >= 128 which gets sign-extended to a negative value.
The macro ISUPPER protects against this as well." */
-#if STDC_HEADERS || (!defined (isascii) && !HAVE_ISASCII)
+#if STDC_HEADERS || (!defined isascii && !HAVE_ISASCII)
# define IN_CTYPE_DOMAIN(c) 1
#else
# define IN_CTYPE_DOMAIN(c) isascii(c)