Revert use of autoconf 2.9, it was causing too many regressions.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / coremaker.c
1 /* Simple little program that just generates a core dump from inside some
2 nested function calls. */
3
4
5 void
6 func2 ()
7 {
8 abort ();
9 }
10
11 void
12 func1 ()
13 {
14 func2 ();
15 }
16
17 main ()
18 {
19 func1 ();
20 }
21
This page took 0.029283 seconds and 4 git commands to generate.