1 2 3 4 5 6 7 8 9 10 11
extern int mumble; extern void abort (void); extern void exit (int); int main () { if (++mumble != 42) abort (); exit (0); }