void exit (int); static int rule_text_needs_stack_pop = 0; static int input_stack_pos = 1; int f (void) { rule_text_needs_stack_pop = 1; if (input_stack_pos <= 0) return 1; else return 0; } int main (void) { f (); exit (0); }