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