brintos

brintos / llvm-project-archived public Read only

0
0
Text · 119 B · 8a5a6a2 Raw
12 lines · cpp
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