blob: cdc75f6b8b61ae9dc3edd7713ce4feb4e8e98522 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* 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_failed(i);
return i;
#endif
}
|