fixed lots of warnings in testprograms
[libfirm] / ir / be / test / EmptyFor.c
1 #include <stdio.h>
2
3
4 void endless(void)
5 {
6   for (;;) {
7   }
8 }
9
10 int main(int argc, char *argv[])
11 {
12   printf("EmptyFor.c:\n");
13
14   return 0;
15 }