brintos

brintos / llvm-project-archived public Read only

0
0
Text · 147 B · b7d00a6 Raw
12 lines · cpp
1#include <stdio.h>2extern "C" int func_from_c();3extern int func_from_cpp();4 5int6main()7{8    func_from_c();9    func_from_cpp();10    return 0;11}12