ftp.nice.ch/Attic/openStep/developer/bundles/GDBbundle.1.0.s.tgz#/GDBbundle-1.0.s/debug/gdb/gdb/tests/dumper.c

This is dumper.c in view mode; [Download] [Up]

int foo(int n)
{
    if (n)
	return foo1(n - 1);
    else
	*(char *)0 = 1;
}

int foo1(int n)
{
    if (n)
	return foo(n - 1);
    else
	*(char *)0 = 1;
}

void main()
{
    foo(10);
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.