index
:
rocket-tools/riscv-gnu-toolchain/musl.git
master
rs-1.0
Unnamed repository; edit this file 'description' to name the repository.
root
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
stdlib
/
labs.c
blob: 675b95b8ef762df5671591c64680eb593f1babcc (
plain
)
1
2
3
4
long
labs
(
long
a
)
{
return
a
>
0
?
a
: -
a
;
}