added -C option to enable running on more than 1 node
[tridge/junkcode.git] / aa.c
1 static void foo1(void)
2 {
3         char *p = alloca(32);
4         p[0] = 0x42;
5 }
6
7 main()
8 {
9         foo1();
10 }