blob: 539a0c4334962b3b14ea6b4ff829926458387044 (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "internal.h"
void
liberror_llabs_failed(long long int i)
{
liberror_set_error_errno("The absolute value of largest negative integer "
"cannot be represented as a signed integer",
"llabs", EOVERFLOW);
(void) i;
}
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_save_backtrace(NULL);
liberror_llabs(i);
return i;
#endif
}
|