brintos

brintos / llvm-project-archived public Read only

0
0
Text · 141 B · f7add3c Raw
10 lines · cpp
1#include <stdio.h>2extern "C" int func_from_c();3extern int func_from_cpp();4 5int main() {6  func_from_c();7  func_from_cpp();8  return 0;9}10