The Nest
Explore
Sign in
nuudlman
llvm
clang
test
Modules
Inputs
libc-libcxx
include
c++
math.h
0
Compiler projects using llvm
Code
Changes
Tags
Discussions
main
#include_next
<
math.h
>
template
<
typename T
>
T
abs
(
T t
)
{
return
(
t
<
0
)
?
-
t
:
t
;
}