dowhile problem
[libfirm] / ir / be / test / CallingTest.c
1 #include <stdio.h>
2
3 int int_func(void)
4 {
5   return 0;
6 }
7
8 float float_func(void)
9 {
10   return 0.0f;
11 }
12
13 int main(int argc, char *argv[])
14 {
15   printf("calltest.c\n");
16
17   printf("  Calling int   function: %d\n", int_func());
18   printf("  Calling float function: %f\n", float_func());
19
20   return 0;
21 }