parser/main.c
changeset 5 d752cbe8208e
child 9 c3fecc82ade6
equal deleted inserted replaced
4:236f8f747073 5:d752cbe8208e
       
     1 /**
       
     2  *  $Id: main.c 52 2008-01-10 00:19:40Z mbroeker $
       
     3  * $URL: http://localhost/svn/c/parser/trunk/main.c $
       
     4  *
       
     5  */
       
     6 
       
     7 #include <stdio.h>
       
     8 
       
     9 extern int yyparse ();
       
    10 
       
    11 int main (int argc, char **argv)
       
    12 {
       
    13     yyparse ();
       
    14     return 0;
       
    15 }