Modify to avoid warning.
authortomo <tomo>
Fri, 3 Oct 2003 03:38:04 +0000 (03:38 +0000)
committertomo <tomo>
Fri, 3 Oct 2003 03:38:04 +0000 (03:38 +0000)
name.c

diff --git a/name.c b/name.c
index 607f006..2e88798 100644 (file)
--- a/name.c
+++ b/name.c
@@ -1,4 +1,5 @@
 #include <string.h>
+#include <stdlib.h>
 #include "chise-name.h"
 
 struct CHISE_HASH_TABLE_ENTRY
@@ -13,6 +14,10 @@ struct CHISE_HASH_TABLE
   CHISE_HASH_TABLE_ENTRY *data;
 };
 
+CHISE_HASH_TABLE* chise_make_hash_table (size_t size);
+void chise_destroy_hash_table (CHISE_HASH_TABLE* hash);
+int chise_hash_c_string (const unsigned char *ptr);
+
 CHISE_HASH_TABLE*
 chise_make_hash_table (size_t size)
 {