xref
: /
third_party
/
musl
/
porting
/
uniproton
/
kernel
/
src
/
stdlib
/
abs.c
(revision 570af302)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
only in
/third_party/musl/porting/uniproton/kernel/src/stdlib/
1
#
include
<
stdlib.h
>
2
3
int
abs
(
int
a)
4
{
5
return
a>0 ? a : -a;
6
}
7