brintos

brintos / llvm-project-archived public Read only

0
0
Text · 120 B · e5d0e09 Raw
13 lines · cpp
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