1namespace ns {2 int func(void)3 {4 return 0;5 }6}7 8extern "C" int foo(void)9{10 return ns::func();11}12