Clang Project

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