summaryrefslogtreecommitdiff
path: root/hashlib.h
diff options
context:
space:
mode:
authorJari Aalto <jari.aalto@cante.net>1997-06-05 14:59:13 +0000
committerJari Aalto <jari.aalto@cante.net>2009-09-12 16:46:50 +0000
commitd166f048818e10cf3799aa24a174fb22835f1acc (patch)
tree1ca27f9243900f8b236d0cde6a3862002aea9e19 /hashlib.h
parentccc6cda312fea9f0468ee65b8f368e9653e1380b (diff)
downloadbash-d166f048818e10cf3799aa24a174fb22835f1acc.tar.gz
Imported from ../bash-2.01.tar.gz.
Diffstat (limited to 'hashlib.h')
-rw-r--r--hashlib.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/hashlib.h b/hashlib.h
index 95a9164b..d7432bd0 100644
--- a/hashlib.h
+++ b/hashlib.h
@@ -41,6 +41,7 @@ extern BUCKET_CONTENTS *remove_hash_item ();
extern BUCKET_CONTENTS *add_hash_item ();
extern BUCKET_CONTENTS *get_hash_bucket ();
extern void flush_hash_table ();
+extern void dispose_hash_table ();
/* Redefine the function as a macro for speed. */
#define get_hash_bucket(bucket, table) \
@@ -49,7 +50,7 @@ extern void flush_hash_table ();
(BUCKET_CONTENTS *)NULL)
/* Default number of buckets in the hash table. */
-#define DEFAULT_HASH_BUCKETS 107
+#define DEFAULT_HASH_BUCKETS 53 /* was 107 */
#if !defined (NULL)
# if defined (__STDC__)