diff options
author | Zack Weinberg <zack@codesourcery.com> | 2003-07-13 17:34:18 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2003-07-13 17:34:18 +0000 |
commit | 438396422cf866b96ccdb10c32875e425b37c0ac (patch) | |
tree | a7cccc1c8ac0a9c5388a19e98814b9a1cc541648 /gcc/cpplib.c | |
parent | 0acf4f8857224501ab8bd97bf0146f7cb766441e (diff) | |
download | gcc-438396422cf866b96ccdb10c32875e425b37c0ac.zip gcc-438396422cf866b96ccdb10c32875e425b37c0ac.tar.gz gcc-438396422cf866b96ccdb10c32875e425b37c0ac.tar.bz2 |
Makefile.in (LIBCPP_DEPS): Remove coretypes.h and $(TM_H).
* Makefile.in (LIBCPP_DEPS): Remove coretypes.h and $(TM_H).
(hashtable.o, line-map.o, mkdeps.o): Likewise, from dependency
list. Move these all together down by cpplib.
* cpplib.h: Don't refer to MAX_WCHAR_TYPE_SIZE when determining
definition of CPPCHAR_SIGNED_T.
* cppcharset.c, cpperror.c, cppexp.c, cppfiles.c, cpphash.c, cppinit.c
* cpplex.c, cpplib.c, cppmacro.c, cpppch.c, cpptrad.c, hashtable.c
* line-map.c, mkdeps.c: Don't include coretypes.h or tm.h.
* cpphash.c (_cpp_init_hashtable): Don't use gcc_obstack_init.
* cppinit.c (cpp_create_reader): Likewise.
* cpphash.h (scan_out_logical_line): Rename _cpp_scan_out_logical_line.
* cpptrad.c: Likewise. All callers changed.
* cpplib.c: All callers changed.
* c-ppoutput.c: Replace 'uchar' with 'unsigned char' throughout.
* hashtable.h: Define GTY(x) to nothing here too.
From-SVN: r69298
Diffstat (limited to 'gcc/cpplib.c')
-rw-r--r-- | gcc/cpplib.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c index bbd6d01..3169f36 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -21,9 +21,6 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "config.h" #include "system.h" -#include "coretypes.h" -#include "tm.h" - #include "cpplib.h" #include "cpphash.h" #include "obstack.h" @@ -280,7 +277,7 @@ prepare_directive_trad (cpp_reader *pfile) || pfile->directive == &dtable[T_ELIF]); if (no_expand) pfile->state.prevent_expansion++; - scan_out_logical_line (pfile, NULL); + _cpp_scan_out_logical_line (pfile, NULL); if (no_expand) pfile->state.prevent_expansion--; pfile->state.skipping = was_skipping; |