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.