22 lines
192 B
C
22 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 ();
|
||
|
}
|
||
|
|