diff options
author | Ralf Corsepius <ralf.corsepius@rtems.org> | 2012-07-17 16:56:45 +0000 |
---|---|---|
committer | Ralf Corsepius <ralf.corsepius@rtems.org> | 2012-07-17 16:56:45 +0000 |
commit | 392c090c7e4469f1c17e5640db0cccca08cad96b (patch) | |
tree | bcf6e5568c4f77a59179a91f84983e7432e6c936 /newlib/libc | |
parent | 1acc80f5d25689ca963b84911f2b47f8eddbd0d4 (diff) | |
download | cygnal-392c090c7e4469f1c17e5640db0cccca08cad96b.tar.gz cygnal-392c090c7e4469f1c17e5640db0cccca08cad96b.tar.bz2 cygnal-392c090c7e4469f1c17e5640db0cccca08cad96b.zip |
2012-07-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* libc/search/hcreate_r.c (hdestroy_r): #ifdef 0 unused vars ie, idx.
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/search/hcreate_r.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/newlib/libc/search/hcreate_r.c b/newlib/libc/search/hcreate_r.c index 4ff758fdb..8aba524ec 100644 --- a/newlib/libc/search/hcreate_r.c +++ b/newlib/libc/search/hcreate_r.c @@ -123,9 +123,10 @@ hcreate_r(size_t nel, struct hsearch_data *htab) void hdestroy_r(struct hsearch_data *htab) { +#if 0 struct internal_entry *ie; size_t idx; - +#endif if (htab->htable == NULL) return; |