#include <stdio.h>

int foo(void) {
	printf("libtest foo called\n");
	return 1;
}

int test_foo(void)
{
	return foo(); 
}

