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


void
zneg(z_t a, z_t b)
{
	if (a != b)
		zset(a, b);
	SET_SIGNUM(a, -zsignum(a));
}