Sign in
◑
Theme
mojo
/
mojo-tools
/
e72c5b36e0633399dfe0f906be25cdf0fc0935be
/
.
/
fusl
/
src
/
stdlib
/
labs.c
blob: 9c995d60e86f2ea4d7d5e805a277be2917df5925 [
file
]
long
labs
(
long
a
)
{
return
a
>
0
?
a
:
-
a
;
}