updated for version 7.0042
diff --git a/src/proto/hashtable.pro b/src/proto/hashtable.pro
new file mode 100644
index 0000000..f6cb77a
--- /dev/null
+++ b/src/proto/hashtable.pro
@@ -0,0 +1,6 @@
+/* hashtable.c */
+void hash_init __ARGS((hashtable *ht));
+hashitem *hash_find __ARGS((hashtable *ht, char_u *key));
+int hash_add __ARGS((hashtable *ht, char_u *key));
+void hash_remove __ARGS((hashtable *ht, hashitem *hi));
+/* vim: set ft=c : */