NAME
labs, llabs
—
return the absolute value of a long
integer
SYNOPSIS
#include
<stdlib.h>
long
labs
(long
i);
long long
llabs
(long
long j);
DESCRIPTION
The
labs
()
function returns the absolute value of the long integer
i. The
llabs
()
function returns the absolute value of the long long integer
j.
SEE ALSO
STANDARDS
The labs
() and
llabs
() functions conform to.
BUGS
The absolute value of the most negative integer remains negative.