brintos

brintos / llvm-project-archived public Read only

0
0
Text · 163 B · 1842506 Raw
15 lines · cpp
1extern LLDB_DYLIB_IMPORT int b_function();2 3int a_init()4{5    return 234;6}7 8int a_global = a_init();9 10extern "C" int11a_function ()12{13    return b_function ();14}15