xref
: /
aosp_15_r20
/
external
/
musl
/
src
/
stdlib
/
abs.c
(revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
include
<
stdlib.h
>
2
abs(int a)
3
int
abs
(
int
a
)
4
{
5
return
a
>0 ?
a
: -
a
;
6
}
7