[alpha_beta] Fix memory leaks
I have used many mallocs and have not freed it.
But there is still a read error which indicates another problem.
committer: Markus Bröker <mbroeker@largo.homelinux.org>
/**
* libtest/main.c
* Copyright (C) 2008 Markus Broeker
*/
void func1 ();
void func2 ();
int main (int argc, char **argv)
{
func1 ();
func2 ();
return 0;
}