0_0_32797767_5755.c: In function 'main':
0_0_32797767_5755.c:2:37: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
#define for_cycle(VAR, LEFT, RIGHT) for(int VAR = (LEFT); VAR < (RIGHT); VAR++)
^
0_0_32797767_5755.c:11:9: note: in expansion of macro 'for_cycle'
for_cycle(i, 1, a) {
^
0_0_32797767_5755.c:2:37: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
#define for_cycle(VAR, LEFT, RIGHT) for(int VAR = (LEFT); VAR < (RIGHT); VAR++)
^
0_0_32797767_5755.c:11:9: note: in expansion of macro 'for_cycle'
for_cycle(i, 1, a) {
^
0_0_32797767_5755.c:15:19: error: redefinition of 'i'
for_cycle(i, 1, b) {
^
0_0_32797767_5755.c:2:45: note: in definition of macro 'for_cycle'
#define for_cycle(VAR, LEFT, RIGHT) for(int VAR = (LEFT); VAR < (RIGHT); VAR++)
^
0_0_32797767_5755.c:11:19: note: previous definition of 'i' was here
for_cycle(i, 1, a) {
^
0_0_32797767_5755.c:2:45: note: in definition of macro 'for_cycle'
#define for_cycle(VAR, LEFT, RIGHT) for(int VAR = (LEFT); VAR < (RIGHT); VAR++)
^
0_0_32797767_5755.c:2:37: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
#define for_cycle(VAR, LEFT, RIGHT) for(int VAR = (LEFT); VAR < (RIGHT); VAR++)
^
0_0_32797767_5755.c:15:9: note: in expansion of macro 'for_cycle'
for_cycle(i, 1, b) {
^
|