changeset 5 | d752cbe8208e |
child 9 | c3fecc82ade6 |
new file mode 100644 --- /dev/null +++ b/parser/main.c @@ -0,0 +1,15 @@ +/** + * $Id: main.c 52 2008-01-10 00:19:40Z mbroeker $ + * $URL: http://localhost/svn/c/parser/trunk/main.c $ + * + */ + +#include <stdio.h> + +extern int yyparse (); + +int main (int argc, char **argv) +{ + yyparse (); + return 0; +}