repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
getnameinfo: make size check not fail for bigger sizes
[musl.git]
/
src
/
stdlib
/
abs.c
blob
4806d629d6cd152c8d5b53804fef8f1e2a5df31b
1
int
abs
(
int
a
)
2
{
3
return
a
>
0
?
a
: -
a
;
4
}