blob: edf4c82e3f70e906a8f3b985cb156bd77928c343 (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "internal.h"
long long int
liberror_llabs(long long int i)
{
#if LLONG_MIN == -LLONG_MAX
return llabs(i);
#else
if (i != LLONG_MIN)
return llabs(i);
liberror_set_error_errno("The absolute value of largest negative integer "
"cannot be represented as a signed integer",
"llabs", EOVERFLOW);
return i;
#endif
}
|