Sign in
◑
Theme
llvm
/
llvm-project
/
890c4bece26e005cd9fa5511fe0efa7307794de5
/
.
/
clang
/
test
/
Modules
/
Inputs
/
libc-libcxx
/
include
/
c++
/
math.h
blob: 890db371de660ee4a79636bd75102876181bdf2e [
file
]
#include_next <math.h>
template
<
typename
T
>
T abs
(
T t
)
{
return
(
t
<
0
)
?
-
t
:
t
;
}