- lalr();
-
- /* Find and record any conflicts: places where one token of lookahead is not
- enough to disambiguate the parsing. In file conflicts.
- Currently this does not do anything to resolve them;
- the trivial form of conflict resolution that exists is done in output. */
- initialize_conflicts();
-
- /* print information about results, if requested. In file print. */
- if (verboseflag)
- verbose();
- else
- terse();
-
- /* output the tables and the parser to ftable. In file output. */
- output();
- done(failure);
-}
-
-/* functions to report errors which prevent a parser from being generated */
-
-void
-fatal(s)
-char *s;
-{
- extern char *infile;