blob: 3979dffdcd2298e20e1b7c9c54b834d8a6ecaae4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* See LICENSE file for copyright and license details. */
#include "internal.h"
long int
liberror_labs(long int i)
{
#if LONG_MIN == -LONG_MAX
return labs(i);
#else
if (i != LONG_MIN)
return labs(i);
liberror_set_error_errno("The absolute value of largest negative integer "
"cannot be represented as a signed integer",
"labs", EOVERFLOW);
return i;
#endif
}
|