aboutsummaryrefslogtreecommitdiff
path: root/sys/vops/lz/axorl.x
blob: d4087fd3a26daf77ca32fa4d467d537a0daf9cdc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.

# AXOR -- Compute the exclusive or of two vectors (generic).

procedure axorl (a, b, c, npix)

long	a[ARB], b[ARB], c[ARB]
int	npix, i
long	xorl()

begin
	do i = 1, npix {
		c[i] = xorl (a[i], b[i])
	}
end