Commit 39b4caea authored by murase_syuka's avatar murase_syuka

closing to Local Scope

parent 1248e2ba
......@@ -58,10 +58,11 @@ print_api_common_error(int32_t error)
}
#undef STRTOUL
#define STRTOUL(ul,s) \
#define STRTOUL(ul,s) { \
int i; \
ul = 0; \
int i = 0; \
for(i=0; ISDIGIT(s[i]); i++) ul = 10*ul + (s[i] -'0');
for(i=0; ISDIGIT(s[i]); i++) ul = 10*ul + (s[i] -'0'); \
}
static int32_t
parse_breakpoint_no(char* args)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment