The Nest
Explore
Sign in
nuudlman
llvm
llvm
test
tools
llvm-cov
Inputs
sources_specified
abs.h
0
Compiler projects using llvm
Code
Changes
Tags
Discussions
main
int
abs
(
int
x
)
{
if
(
x
<
0
)
return
-
x
;
return
x
;
}