index
:
musl
awilfox/monotonic-dns
lookup-serv
master
posix-compliance
ustat
The musl libc tree (WIP / dev branches)
root
summary
refs
log
blame
commit
diff
log msg
author
committer
range
path:
root
/
src
/
stdlib
/
abs.c
blob: 4806d629d6cd152c8d5b53804fef8f1e2a5df31b (
plain
) (
tree
)
0b44a031
1
2
3
4
int
abs
(
int
a
)
{
return
a
>
0
?
a
:
-
a
;
}