parser/calc/main.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Fri, 01 May 2009 18:27:06 +0200
changeset 89 66f0244c2863
parent 77 49e0babccb23
permissions -rw-r--r--
nearest: more templates fun small improvements and a new template function 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;
}