Clang Project

clang_source_code/test/Modules/Inputs/libc-libcxx/sysroot/usr/include/c++/v1/math.h
1#ifndef LIBCXX_MATH_H
2#define LIBCXX_MATH_H
3
4#include_next <math.h>
5template<typename T> T abs(T t) { return (t < 0) ? -t : t; }
6
7#include <type_traits>
8
9#endif
10