blob: e30ce2fd5c224e951c2c31f20a88894b7c6f6d76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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);
}
|