blob: e30ce2fd5c224e951c2c31f20a88894b7c6f6d76 [file] [log] [blame]
static int rule_text_needs_stack_pop = 0;
static int input_stack_pos = 1;
f (void)
{
rule_text_needs_stack_pop = 1;
if (input_stack_pos <= 0)
return 1;
else
return 0;
}
main ()
{
f ();
exit (0);
}