1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-26 02:30:35 +02:00

Remove unnecessary parens in `#if defined (SYMBOL)' expressions.

This commit is contained in:
Jim Meyering
2005-08-23 15:05:54 +00:00
parent 4fb8e0f3c4
commit 8de5019cf5
+1 -1
View File
@@ -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)