cpphash.c (special_symbol): Remove spurious argument to cpp_lookup.

* cpphash.c (special_symbol): Remove spurious argument to
	cpp_lookup.

From-SVN: r31917
This commit is contained in:
Nathan Sidwell 2000-02-11 13:46:37 +00:00 committed by Nathan Sidwell
parent 0d4ef09cd5
commit 5a5c85c6f7
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2000-02-11 Nathan Sidwell <nathan@acm.org>
* cpphash.c (special_symbol): Remove spurious argument to
cpp_lookup.
2000-02-11 Joel Sherrill (joel@OARcorp.com>
* configure.in: (i*86-*-rtems*): Swapped elf and coff

View File

@ -907,7 +907,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, (U_CHAR *) "__STRICT_ANSI__", 15, -1))
&& !cpp_lookup (pfile, (U_CHAR *) "__STRICT_ANSI__", 15))
CPP_PUTC_Q (pfile, '0');
else
#endif