brintos

brintos / llvm-project-archived public Read only

0
0
Text · 185 B · 669d443 Raw
12 lines · c
1extern "C" {2  static int globalInExternC = 1;3 4  static void globalFuncInExternC() {}5}6 7extern "C++" {8  static int globalInExternCXX = 2;9 10  static void globalFuncInExternCXX() {}11}12