brintos

brintos / llvm-project-archived public Read only

0
0
Text · 84 B · 890db37 Raw
3 lines · c
1#include_next <math.h>2template<typename T> T abs(T t) { return (t < 0) ? -t : t; }3