From: Robert Walsh Date: Sun, 4 Jan 2004 23:15:22 +0000 (+0000) Subject: Add missing atoll16 prototype. I use this in the watchpoint stuff. X-Git-Tag: svn/VALGRIND_2_1_1~124 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9aebbbd032b8d8c7aef4489168fe3eae7d9827a6;p=thirdparty%2Fvalgrind.git Add missing atoll16 prototype. I use this in the watchpoint stuff. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2182 --- diff --git a/include/vg_skin.h.base b/include/vg_skin.h.base index 0efbc7be6f..4ef7a638d4 100644 --- a/include/vg_skin.h.base +++ b/include/vg_skin.h.base @@ -404,6 +404,9 @@ extern Int VG_(system) ( Char* cmd ); 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 );