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