ABS(3) — Kubota Pacfic Computer Inc. (C Library Functions−BSD)
NAME
abs − integer absolute value
SYNOPSIS
abs(i)
int i;
DESCRIPTION
abs returns the absolute value of its integer operand.
SEE ALSO
BUGS
Applying the abs function to the most negative integer generates a result which is the most negative integer. That is,
abs(0x80000000)
returns 0x80000000 as a result.
September 02, 1992