1 #include_next <math.h>
2 template<typename T> T abs(T t) { return (t < 0) ? -t : t; }
3