#ifndef LIBCXX_MATH_H #define LIBCXX_MATH_H #include_next template T abs(T t) { return (t < 0) ? -t : t; } #include #endif