cleanup zombies during run, and check processes still exist
[tridge/junkcode.git] / m2.c
1 int foo(int y)
2 {
3         int x[3];
4
5         printf("x2=%d\n", x[2]);
6
7         x[3] = 0;
8 }
9
10 main()
11 {
12         foo(0);
13 }