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