921e5a0eb4
From-SVN: r14840
19 lines
218 B
C
19 lines
218 B
C
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);
|
|
}
|