xref: /llvm-project/clang/test/Modules/Inputs/libc-libcxx/include/c++/math.h (revision ed84df008f609f7245871a9b6d00b57cb19410aa)
1*ed84df00SBruno Cardoso Lopes #include_next <math.h>
abs(T t)2*ed84df00SBruno Cardoso Lopes template<typename T> T abs(T t) { return (t < 0) ? -t : t; }
3