aboutsummaryrefslogtreecommitdiff
path: root/sys/vops/lz/axors.x
blob: ab3c073dde09c4f46319d81f272cfaeb0723c97e (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 axors (a, b, c, npix)

short	a[ARB], b[ARB], c[ARB]
int	npix, i
short	xors()

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