about summary refs log tree commit diff stats
path: root/src/LYHash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/LYHash.h')
-rw-r--r--src/LYHash.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/LYHash.h b/src/LYHash.h
index b466f2aa..00f8066c 100644
--- a/src/LYHash.h
+++ b/src/LYHash.h
@@ -11,16 +11,22 @@ struct _hashbucket {
 };
 
 typedef struct _hashbucket bucket;
-	
-#if !defined(HASHSIZE)
-#define HASHSIZE 32768
+
+#if !defined(CSHASHSIZE)
+#ifdef NOT_USED	
+#define CSHASHSIZE 32768
+#else
+#define CSHASHSIZE 8193
+#endif
 #endif
 
 #define NOSTYLE -1
 
-extern bucket hashStyles[HASHSIZE];
+extern bucket hashStyles[CSHASHSIZE];
 extern int hash_code PARAMS((char* string));
-extern int hash_table[HASHSIZE]; /* 32K should be big enough */
+#ifdef NOT_USED
+extern int hash_table[CSHASHSIZE]; /* 32K should be big enough */
+#endif
 
 extern int	s_alink, s_a, s_status,
 		s_label, s_value, s_high,