aboutsummaryrefslogtreecommitdiffstats
path: root/src/zabs.c
blob: d4de6c4a4725b9cd78b0214c6b23b2b449ccd04f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/* See LICENSE file for copyright and license details. */
#include "internals.h"


void
zabs(z_t a, z_t b)
{
	SET(a, b);
	SET_SIGNUM(a, !zzero(a));
}