summaryrefslogtreecommitdiff
path: root/src/stdlib/llabs.c
blob: e60e34b5afe06573263718d5784e1f535bf6cdb0 (plain)
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
#include <stdlib.h>
#include <limits.h>
#include "_stdlib.h"

/** absolute value **/

long long int llabs(long long int j)
{
	SIGNAL_SAFE(0);

	if (j == LLONG_MIN) {
		/* undefined */
		return LLONG_MIN;
	}

	return j < 0 ? -j : j;
}

/***
computes the absolute value of ARGUMENT(j).
***/

/*
UNDEFINED(ABS(ARGUMENT(j)) cannot be represented
RETURN_SUCCESS(ABS(ARGUMENT(j))
STDC(199901)
*/