brintos

brintos / llvm-project-archived public Read only

0
0
Text · 98 B · e5f690a Raw
8 lines · c
1int to_be_interrupted(int);2 3int main() {4  int c = 10;5  c = to_be_interrupted(c);6  return c;7}8