From 8de5019cf5116537cf941b9192ea719f7a746b64 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 23 Aug 2005 15:05:54 +0000 Subject: Remove unnecessary parens in `#if defined (SYMBOL)' expressions. --- src/system.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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) -- cgit v1.2.3-54-g00ecf