diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-04-15 20:36:33 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-04-15 20:36:33 +0000 |
commit | c9ac9147cfe3ffb4cc530682b0f3f807d860d8a4 (patch) | |
tree | 3a3d8d2a1200271f88e99f0c99b9d1269be9d399 /libiberty/hashtab.c | |
parent | 8a4680dba6c895290289e0019ac962ccc2f5afb5 (diff) | |
download | gcc-c9ac9147cfe3ffb4cc530682b0f3f807d860d8a4.tar.gz |
argv.c: Fix comments.
* argv.c: Fix comments.
* calloc.c: Don't unnecessarily include "libiberty.h".
(bzero): Add prototype.
* floatformat.c: Include "ansidecl.h", rely on ANSI_PROTOTYPES.
* getcwd.c (getcwd): Use standard definition to avoid conflicts
with system headers.
* hashtab.c (htab_traverse): Delete unused variables.
* rename.c: Include "ansidecl.h".
(rename): Use standard definition to avoid conflicts with system
headers.
* strsignal.c: Rely on ANSI_PROTOTYPES.
* strstr.c: Check GNUC >= 2, not GNUC == 2.
* vfprintf.c: Include "ansidecl.h", rely on ANSI_PROTOTYPES.
* vprintf.c: Include "ansidecl.h" earlier, rely on
ANSI_PROTOTYPES.
* vsprintf.c: Include "ansidecl.h" earlier, rely on
ANSI_PROTOTYPES and possibly include <stdarg.h>.
* Makefile.in: Regenerate dependencies.
From-SVN: r65659
Diffstat (limited to 'libiberty/hashtab.c')
-rw-r--r-- | libiberty/hashtab.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libiberty/hashtab.c b/libiberty/hashtab.c index 2f8dfd6c581..32067afb5b8 100644 --- a/libiberty/hashtab.c +++ b/libiberty/hashtab.c @@ -634,9 +634,6 @@ htab_traverse (htab, callback, info) htab_trav callback; PTR info; { - PTR *slot; - PTR *limit; - if ((htab->n_elements - htab->n_deleted) * 8 < htab->size) htab_expand (htab); |