brintos

brintos / llvm-project-archived public Read only

0
0
Text · 59 B · f13c517 Raw
6 lines · c
1int abs(int x) {2  if (x < 0)3    return -x;4  return x;5}6