xref
: /
llvm-project-15.0.7
/
clang
/
test
/
Modules
/
Inputs
/
libc-libcxx
/
include
/
c++
/
math.h
(revision 052d95a6)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
include_next
<
math
.
h
>
2
template
<
typename
T
>
T
abs
(
T
t
) {
return
(
t
< 0) ? -
t
:
t
; }
3