alpha_beta ui: removed a redundant line
The original print routine was from an open book by galileo
computing and the redundant line was introduced there.
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;
}