diff options
author | Zack Weinberg <zack@wolery.cumb.org> | 2000-02-08 21:27:02 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-02-08 21:27:02 +0000 |
commit | 5fa7f88c064df849718157fb4e90fa865e35fb5b (patch) | |
tree | dc89fdbfec79835dff420526e91afe6ae04f9ca8 /gcc/scan.h | |
parent | 4be2e5d967e76bdec83d5b6d08d7b9c5ccacad75 (diff) | |
download | gcc-5fa7f88c064df849718157fb4e90fa865e35fb5b.zip gcc-5fa7f88c064df849718157fb4e90fa865e35fb5b.tar.gz gcc-5fa7f88c064df849718157fb4e90fa865e35fb5b.tar.bz2 |
Makefile.in (GEN_PROTOS_OBJS): Remove libcpp.a.
* Makefile.in (GEN_PROTOS_OBJS): Remove libcpp.a.
(gen_protos.o): Don't depend on cpplib.h or cpphash.h.
(fix-header.o): Don't depend on cpphash.h.
* scan.c (hashstr): New function.
* scan.h: Prototype it.
* fix-header.c: Don't include cpphash.h. Use hashstr.
* gen-protos.c: Don't include cpphash.h or cpplib.h. Use
hashstr. Report hash table statistics. Add private
definition of xrealloc.
From-SVN: r31854
Diffstat (limited to 'gcc/scan.h')
-rw-r--r-- | gcc/scan.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -60,6 +60,7 @@ extern int read_upto _PARAMS((FILE *, sstring *, int)); extern unsigned long hash _PARAMS((const char *)); extern void recognized_function _PARAMS((const char *, int, int, const char *, int, int, const char *, int)); extern void recognized_extern _PARAMS((const char *, int, const char *, int)); +extern unsigned int hashstr _PARAMS((const char *, unsigned int)); /* get_token is a simple C lexer. */ #define IDENTIFIER_TOKEN 300 |