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