fixed lots of warnings in testprograms
[libfirm] / ir / be / test / fehler12.c
1 void xyz (void);
2
3 int t = -1;
4
5 int main(void) {
6         printf("%d\n", t);
7         xyz();
8         printf("%d\n", t);
9
10         return 0;
11 }
12
13
14 void xyz (void) {
15         t++;
16 }