NAME

labs - return a long integer absolute value

SYNOPSIS

#include "zkStdlib.h"

long int labs(long int i);

DESCRIPTION

The labs() function computes the absolute value of its long integer operand, i. If the result cannot be represented, the behaviour is undefined.

RETURN VALUE

The labs() function returns the absolute value of its long integer operand.

ERRORS

No errors are defined.