index
:
mirror/musl
this commit
master
rs-1.0
mirror of git://git.musl-libc.org/musl
Leah Neukirchen
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
stdlib
/
labs.c
blob: 675b95b8ef762df5671591c64680eb593f1babcc (
plain
) (
blame
)
1
2
3
4
long labs(long a) { return a>0 ? a : -a; }