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