Don't do builtin_frame_address test with ARM gcc
[tinycc.git] / tests2 / 07_function.c
blob0477ce14e23001d47aadf561db463a7c4a55b819
1 #include <stdio.h>
3 int myfunc(int x)
5 return x * x;
8 void vfunc(int a)
10 printf("a=%d\n", a);
13 void qfunc()
15 printf("qfunc()\n");
18 int main()
20 printf("%d\n", myfunc(3));
21 printf("%d\n", myfunc(4));
23 vfunc(1234);
25 qfunc();
27 return 0;
30 // vim: set expandtab ts=4 sw=3 sts=3 tw=80 :