This commit is contained in:
christos 2005-12-05 01:50:28 +00:00
parent ebf0820ef4
commit d018c18c52
1 changed files with 5 additions and 7 deletions

View File

@ -32,19 +32,17 @@
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: main.c,v 1.6 2003/08/07 16:45:01 agc Exp $");
__RCSID("$NetBSD: main.c,v 1.7 2005/12/05 01:50:28 christos Exp $");
#endif
#endif /* not lint */
#include <stdlib.h>
extern int yyparse __P((void));
int main __P((int, char *[]));
int yyparse(void);
int
main(argc, argv)
int argc;
char *argv[];
/*ARGSUSED*/
main(int argc, char *argv[])
{
exit(yyparse());
return yyparse();
}