diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-03 21:43:09 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-03 21:43:09 +0000 |
commit | e484a1cc4dea83791a2a5fd2f1996dd07a699dc2 (patch) | |
tree | 3504047f1de0b4702b0d0d4991c780df4a3aad89 /gcc/cpphash.c | |
parent | 625bfde66084a35c76984479eea4debb219d384d (diff) | |
download | gcc-e484a1cc4dea83791a2a5fd2f1996dd07a699dc2.tar.gz |
* cpperror.c: Update comments and copyright.
* cppexp.c, cppfiles.c, cpphash.c, cpphash.h, cppinit.c,
cpplex.c, cpplib.c, cpplib.h, cppmacro.c, cppmain.c: Similarly.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48522 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpphash.c')
-rw-r--r-- | gcc/cpphash.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gcc/cpphash.c b/gcc/cpphash.c index 39a3de77ffa..8be1b2f1a65 100644 --- a/gcc/cpphash.c +++ b/gcc/cpphash.c @@ -1,6 +1,6 @@ /* Hash tables for the CPP library. Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1998, - 1999, 2000 Free Software Foundation, Inc. + 1999, 2000, 2001, 2002 Free Software Foundation, Inc. Written by Per Bothner, 1994. Based on CCCP program by Paul Rubin, June 1986 Adapted to ANSI C, Richard Stallman, Jan 1987 @@ -32,7 +32,6 @@ static cpp_hashnode *alloc_node PARAMS ((hash_table *)); /* Return an identifier node for hashtable.c. Used by cpplib except when integrated with the C front ends. */ - static cpp_hashnode * alloc_node (table) hash_table *table; @@ -47,7 +46,6 @@ alloc_node (table) /* Set up the identifier hash table. Use TABLE if non-null, otherwise create our own. */ - void _cpp_init_hashtable (pfile, table) cpp_reader *pfile; @@ -81,7 +79,6 @@ _cpp_init_hashtable (pfile, table) } /* Tear down the identifier hash table. */ - void _cpp_destroy_hashtable (pfile) cpp_reader *pfile; @@ -95,7 +92,6 @@ _cpp_destroy_hashtable (pfile) /* Returns the hash entry for the STR of length LEN, creating one if necessary. */ - cpp_hashnode * cpp_lookup (pfile, str, len) cpp_reader *pfile; @@ -107,7 +103,6 @@ cpp_lookup (pfile, str, len) } /* Determine whether the str STR, of length LEN, is a defined macro. */ - int cpp_defined (pfile, str, len) cpp_reader *pfile; @@ -124,7 +119,6 @@ cpp_defined (pfile, str, len) /* For all nodes in the hashtable, callback CB with parameters PFILE, the node, and V. */ - void cpp_forall_identifiers (pfile, cb, v) cpp_reader *pfile; |