aboutsummaryrefslogtreecommitdiffstats
path: root/llabs.c
blob: 6aa6362891b88e7bd3aa3f45bcb960b7e7193048 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* 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_save_backtrace(NULL);
	liberror_set_error_errno("The absolute value of largest negative integer "
	                         "cannot be represented as a signed integer",
	                         "llabs", EOVERFLOW);
	return i;
#endif
}