#include // 261690 function calls before a core dump on my computer 2007-8-30 static int x = 0; void counter() { if (++x % 10 == 0) fprintf(stderr, "%d\n", x); counter(); } int main(int argc, char** argv) { counter(); return 0; }