1
2extern int bar(const char** list);
3
4int foo(const char** list)
5{
6	return bar(list);
7}
8