/* Test file to be compiled with -fstack-check, for testing "bt" against different stack checking prologue sequences. */ int i = 0; void small_frame () { i++; /* set breakpoint here */ } void medium_frame () { char S [16384]; small_frame (); } void big_frame () { char S [524188]; small_frame (); } void main () { small_frame (); medium_frame (); big_frame (); }