summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)