brintos

brintos / llvm-project-archived public Read only

0
0
Text · 94 B · d79970e Raw
12 lines · c
1extern int f();2 3void g() {4  int y = 14;5  int x = f();6}7 8int main() {9  g();10  return 0;11}12