LLABS(3) Library Functions Manual LLABS(3)
NAME
llabsreturn the absolute value of a long long integer
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <stdlib.h>
long long int
llabs(long long int j);
DESCRIPTION
The llabs() function returns the absolute value of the long long integer j.
SEE ALSO
STANDARDS
The llabs() function conforms to ISO/IEC 9899:1999 (“ISO C99”).
BUGS
The absolute value of the most negative integer remains negative.