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
ldso: notify the debugger when we're doing a dlopen
[musl.git]
/
src
/
stdlib
/
abs.c
blob
e721fdc2b17e7917430eca885297b6e2d47986a1
1
#include <stdlib.h>
2
3
int
abs
(
int
a
)
4
{
5
return
a
>
0
?
a
: -
a
;
6
}