Add missing atoll16 prototype.  I use this in the watchpoint stuff.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2182 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/include/vg_skin.h.base b/include/vg_skin.h.base
index 0efbc7b..4ef7a63 100644
--- a/include/vg_skin.h.base
+++ b/include/vg_skin.h.base
@@ -404,6 +404,9 @@
 
 extern Long  VG_(atoll)  ( Char* str );
 
+/* Like atoll(), but converts a number of base 16 */
+extern Long  VG_(atoll16) ( Char* str );
+
 /* Like atoll(), but converts a number of base 2..36 */
 extern Long  VG_(atoll36) ( UInt base, Char* str );