parser/calc/main.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Fri, 19 Nov 2010 00:34:26 +0100
changeset 155 a54dcc86addb
parent 77 49e0babccb23
permissions -rw-r--r--
cunit needs libcunit and libncurses committer: Markus Bröker <mbroeker@largo.homelinux.org>

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

#include <stdio.h>
#include <stdlib.h>

extern int yyparse ();

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

    return EXIT_SUCCESS;
}