libtest/main.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 28 May 2009 16:51:52 +0200
changeset 96 810acedf60d8
parent 77 49e0babccb23
permissions -rw-r--r--
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>

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

void func1 ();
void func2 ();

int main (int argc, char **argv)
{
    func1 ();
    func2 ();

    return 0;
}