From: Jim Meyering Date: Tue, 23 Aug 2005 15:05:54 +0000 (+0000) Subject: Remove unnecessary parens in `#if defined (SYMBOL)' expressions. X-Git-Tag: v5.90~349 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8de5019cf5116537cf941b9192ea719f7a746b64;p=thirdparty%2Fcoreutils.git Remove unnecessary parens in `#if defined (SYMBOL)' expressions. --- diff --git a/src/system.h b/src/system.h index 00beeb01d7..b9aeec0aaa 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)