alpha_beta: memory leaks
After fixing all the memory leaks in this piece code, i can
finally go further to implement a better KI.
committer: Markus Bröker <mbroeker@largo.homelinux.org>
/**
* parser/c_compiler/test/error.c
* Copyright (C) 2008 Markus Broeker
*/
#include <stdio.h>
#include <stdlib.h>
int main (int argc, char **argv)
{
FILE *fp;
/*
* ERROR SEMICOLON IS MISSING
*/
printf ("Hello, world\n")
return EXIT_SUCCESS;
}