Export to skins a function, VG_(HT_count_nodes)(), which was always intended to
be visible to them, but I had forgotten to export.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1874 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/include/vg_skin.h b/include/vg_skin.h
index f17b62e..43dd28c 100644
--- a/include/vg_skin.h
+++ b/include/vg_skin.h
@@ -1489,6 +1489,9 @@
 /* Make a new table. */
 extern VgHashTable VG_(HT_construct) ( void );
 
+/* Count the number of nodes in a table. */
+extern Int VG_(HT_count_nodes) ( VgHashTable table );
+
 /* Add a node to the table. */
 extern void VG_(HT_add_node) ( VgHashTable t, VgHashNode* node );