mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
adhoc fix for pass build
This commit is contained in:
@@ -60,7 +60,8 @@ print_api_common_error(int32_t error)
|
||||
#undef STRTOUL
|
||||
#define STRTOUL(ul,s) \
|
||||
ul = 0; \
|
||||
for(int i=0; ISDIGIT(s[i]); i++) ul = 10*ul + (s[i] -'0');
|
||||
int i = 0; \
|
||||
for(i=0; ISDIGIT(s[i]); i++) ul = 10*ul + (s[i] -'0');
|
||||
|
||||
static int32_t
|
||||
parse_breakpoint_no(char* args)
|
||||
|
||||
Reference in New Issue
Block a user