parser/main.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:47:18 +0200
changeset 27 81a574d60c15
parent 9 c3fecc82ade6
permissions -rw-r--r--
typo in min2time format string 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;
}