BSD 3 development
[unix-history] / usr / src / cmd / sdb / x.c
CommitLineData
b7523e3d
HK
1main() {
2 foo(123456);
3}
4
5foo(){
6 register int f_a, f_b;
7 f_a = 37;
8 f_b = 38;
9 bar();
10};
11
12bar(){
13 register int b_a, b_b, b_c;
14 b_a = 2;
15 b_b = 3;
16 b_c = 4;
17 abort();
18}