Align on 4n bytes when copying fct args on stack
[tinycc.git] / tests2 / 44_scoped_declarations.c
blob2febf98793f9dd253e79e5a4f1aa26ddcdeb3884
1 #include <stdio.h>
3 int main()
5 int a;
7 for (a = 0; a < 2; a++)
9 int b = a;
12 printf("it's all good\n");
14 return 0;
17 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/