1#ifdef STACK_SIZE
2# define A_SIZE (STACK_SIZE/sizeof(int))
3#else
4# define A_SIZE 16384
5#endif
6foo ()
7{
8  int a[A_SIZE];
9  bar (a);
10}
11