old-cross-binutils/gdb/testsuite/gdb.base/coremaker.c
1994-06-07 01:57:15 +00:00

21 lines
192 B
C

/* Simple little program that just generates a core dump from inside some
nested function calls. */
void
func2 ()
{
abort ();
}
void
func1 ()
{
func2 ();
}
main ()
{
func1 ();
}