This website requires JavaScript.
Explore
Help
Sign In
dnrops
/
clang
mirror of
https://github.com/microsoft/clang.git
Watch
1
Star
0
Fork
You've already forked clang
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
3d57694adc
clang
/
test
/
Modules
/
Inputs
/
libc-libcxx
/
include
/
c++
/
math.h
3 lines
84 B
C++
Raw
Blame
History
#
include_next <math.h>
template
<
typename
T
>
T
abs
(
T
t
)
{
return
(
t
<
0
)
?
-
t
:
t
;
}
Reference in New Issue
View Git Blame
Copy Permalink