[pypy-commit] pypy reflex-support: fix type in function declaration

wlav noreply at buildbot.pypy.org
Sun Apr 21 03:53:20 CEST 2013


Author: Wim Lavrijsen <WLavrijsen at lbl.gov>
Branch: reflex-support
Changeset: r63533:ec0b8688fe73
Date: 2013-04-19 10:47 -0700
http://bitbucket.org/pypy/pypy/changeset/ec0b8688fe73/

Log:	fix type in function declaration

diff --git a/pypy/module/cppyy/include/capi.h b/pypy/module/cppyy/include/capi.h
--- a/pypy/module/cppyy/include/capi.h
+++ b/pypy/module/cppyy/include/capi.h
@@ -107,7 +107,7 @@
 
     /* misc helpers ----------------------------------------------------------- */
     long long cppyy_strtoll(const char* str);
-    unsigned long long cppyy_strtuoll(const char* str);
+    unsigned long long cppyy_strtoull(const char* str);
     void cppyy_free(void* ptr);
 
     cppyy_object_t cppyy_charp2stdstring(const char* str);


More information about the pypy-commit mailing list