libtest/main.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:49:11 +0200
changeset 33 5e0a954f7c0b
parent 9 c3fecc82ade6
child 34 4a35f239fe5b
permissions -rw-r--r--
getpwnam_error: * getpwnam allocates memory for the struct and there is no way to free it. * it seems to be a bug in the library function. committer: Markus Bröker <mbroeker@largo.homelinux.org>

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

void func1();
void func2();

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

	return 0;
}