mirror of
https://gitlab.labs.nic.cz/labs/bird.git
synced 2024-05-11 16:54:54 +00:00
Fix bison input for current build tools, otherwise bison or the compiler
will abort the build. (by Andreas)
This commit is contained in:
@ -436,12 +436,12 @@ term:
|
||||
;
|
||||
|
||||
break_command:
|
||||
QUITBIRD { $$ = F_QUITBIRD }
|
||||
| ACCEPT { $$ = F_ACCEPT }
|
||||
| REJECT { $$ = F_REJECT }
|
||||
| ERROR { $$ = F_ERROR }
|
||||
| PRINT { $$ = F_NOP }
|
||||
| PRINTN { $$ = F_NONL }
|
||||
QUITBIRD { $$ = F_QUITBIRD; }
|
||||
| ACCEPT { $$ = F_ACCEPT; }
|
||||
| REJECT { $$ = F_REJECT; }
|
||||
| ERROR { $$ = F_ERROR; }
|
||||
| PRINT { $$ = F_NOP; }
|
||||
| PRINTN { $$ = F_NONL; }
|
||||
;
|
||||
|
||||
print_one:
|
||||
|
Reference in New Issue
Block a user