diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-22 17:49:15 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-22 17:49:15 +0000 |
commit | 2613ffde431594f3fe0562042c32105623fbe4dc (patch) | |
tree | 7b12ffbe18867132e665b66a44f6f72bfcc72e6f /py/misc.h | |
parent | 0379b55ab036921eaee96f07385d2329d8de97fd (diff) |
py: Rename strtonum to mp_strtonum.
strtonum clashes with BSD function of same name, and our version is
different so warrants a unique name. Addresses Issue #305.
Diffstat (limited to 'py/misc.h')
-rw-r--r-- | py/misc.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -60,8 +60,6 @@ bool unichar_isxdigit(unichar c); #define streq(s1, s2) (strcmp((s1), (s2)) == 0) */ -long strtonum(const char *restrict s, int base); - /** variable string *********************************************/ typedef struct _vstr_t { |