In GCC 4.8, why does the following code fragment:
int foo() { return foo(); }
result in a segmentation fault instead of a stack overflow?
In GCC 4.8, why does the following code fragment:
int foo() { return foo(); }
result in a segmentation fault instead of a stack overflow?