parser/main.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:49:11 +0200
changeset 31 c95a6a7e305c
parent 9 c3fecc82ade6
permissions -rw-r--r--
wiki synchronisation committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * test/demos/parser/main.c
 * Copyright (C) 2008 Markus Broeker
 */

#include <stdio.h>

extern int yyparse ();

int main (int argc, char **argv)
{
    yyparse ();
    return 0;
}