1-- Copyright (c) 1990 Regents of the University of California.
2-- All rights reserved.
3--
4--    The primary authors of ayacc were David Taback and Deepak Tolani.
5--    Enhancements were made by Ronald J. Schmalz.
6--
7--    Send requests for ayacc information to ayacc-info@ics.uci.edu
8--    Send bug reports for ayacc to ayacc-bugs@ics.uci.edu
9--
10-- Redistribution and use in source and binary forms are permitted
11-- provided that the above copyright notice and this paragraph are
12-- duplicated in all such forms and that any documentation,
13-- advertising materials, and other materials related to such
14-- distribution and use acknowledge that the software was developed
15-- by the University of California, Irvine.  The name of the
16-- University may not be used to endorse or promote products derived
17-- from this software without specific prior written permission.
18-- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
19-- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
20-- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
21
22-- Module       : output_file.ada
23-- Component of : ayacc
24-- Version      : 1.2
25-- Date         : 11/21/86  12:31:54
26-- SCCS File    : disk21~/rschm/hasee/sccs/ayacc/sccs/sxoutput_file.ada
27
28-- $Header: output_file.a,v 0.1 86/04/01 15:08:21 ada Exp $
29-- $Log:	output_file.a,v $
30-- Revision 0.1  86/04/01  15:08:21  ada
31--  This version fixes some minor bugs with empty grammars
32--  and $$ expansion. It also uses vads5.1b enhancements
33--  such as pragma inline.
34--
35--
36-- Revision 0.0  86/02/19  18:37:42  ada
37--
38-- These files comprise the initial version of Ayacc
39-- designed and implemented by David Taback and Deepak Tolani.
40-- Ayacc has been compiled and tested under the Verdix Ada compiler
41-- version 4.06 on a vax 11/750 running Unix 4.2BSD.
42--
43-- Creates the parser
44package Output_File is
45
46   procedure Make_Output_File;
47
48end Output_File;
49