Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / osf / wml / wmloutp1.c
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* 
24  *  @OSF_COPYRIGHT@
25  *  COPYRIGHT NOTICE
26  *  Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc.
27  *  ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for
28  *  the full copyright text.
29 */ 
30 /* 
31  * HISTORY
32 */ 
33 #ifdef REV_INFO
34 #ifndef lint
35 static char rcsid[] = "$XConsortium: wmloutp1.c /main/7 1995/07/13 21:04:31 drk $"
36 #endif
37 #endif
38 /*
39 *  (c) Copyright 1989, 1990, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
40
41 /*
42  * This is the standard output module for creating the UIL compiler
43  * .h files.
44  */
45
46
47 #include "wml.h"
48
49
50 void wmlOutput ()
51
52 {
53
54 /*
55  * Output the .h files
56  */
57 wmlOutputHFiles ();
58 if ( wml_err_count > 0 ) return;
59
60 /*
61  * Output the keyword (token) tables
62  */
63 wmlOutputKeyWordFiles ();
64 if ( wml_err_count > 0 ) return;
65
66 /*
67  * Output the .mm files
68  */
69 wmlOutputMmFiles ();
70 if ( wml_err_count > 0 ) return;
71
72 return;
73
74 }
75