1*41939Sbostic /*- 2*41939Sbostic * Copyright (c) 1990 The Regents of the University of California. 3*41939Sbostic * All rights reserved. 4*41939Sbostic * 5*41939Sbostic * %sccs.include.redist.c% 624245Smckusick */ 724245Smckusick 824245Smckusick #ifndef lint 9*41939Sbostic static char sccsid[] = "@(#)main.c 5.2 (Berkeley) 05/15/90"; 10*41939Sbostic #endif /* not lint */ 1124245Smckusick 1224245Smckusick main() 1324245Smckusick { 14*41939Sbostic extern yyparse(); 1524245Smckusick 16*41939Sbostic (void)yyparse(); 17*41939Sbostic return(0); 1824245Smckusick } 19