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