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