diff options
author | Zack Weinberg <zack@wolery.cumb.org> | 2000-03-08 03:58:12 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-03-08 03:58:12 +0000 |
commit | 707beebb3d7b232b28ad14af2f55d062c25422de (patch) | |
tree | 1d20d1db85a7d41199931edfe0c40547e3147ccd /gcc/cpphash.c | |
parent | 3fc61836514d0f883c45a4a05ed79fb7a7eeb1e8 (diff) | |
download | gcc-707beebb3d7b232b28ad14af2f55d062c25422de.zip gcc-707beebb3d7b232b28ad14af2f55d062c25422de.tar.gz gcc-707beebb3d7b232b28ad14af2f55d062c25422de.tar.bz2 |
* cpphash.c (special_symbol): Fix thinko in previous commit.
From-SVN: r32399
Diffstat (limited to 'gcc/cpphash.c')
-rw-r--r-- | gcc/cpphash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpphash.c b/gcc/cpphash.c index e5c4c71..410c916 100644 --- a/gcc/cpphash.c +++ b/gcc/cpphash.c @@ -899,7 +899,7 @@ special_symbol (hp, pfile) while (!ip->nominal_fname && ip != CPP_NULL_BUFFER (pfile)) ip = CPP_PREV_BUFFER (ip); if (ip->system_header_p - && !cpp_lookup (pfile, (const U_CHAR *) "__STRICT_ANSI__", 15)) + && !cpp_defined (pfile, (const U_CHAR *) "__STRICT_ANSI__", 15)) CPP_PUTC_Q (pfile, '0'); else #endif |