xref: /csrg-svn/lib/liby/main.c (revision 41939)
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)main.c	5.2 (Berkeley) 05/15/90";
10 #endif /* not lint */
11 
12 main()
13 {
14 	extern yyparse();
15 
16 	(void)yyparse();
17 	return(0);
18 }
19