
extern void foo(char a, char b, char c, char d, char e);

void test(void)
{
	foo(1, 2, 3, 4, 5);
}

