brintos

brintos / llvm-project-archived public Read only

0
0
Text · 82 B · 41eb2b0 Raw
8 lines · c
1template<typename T>2T abs(T x) {3  if (x < 0) {4    return -x;5  }6  return x;7}8