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

# AMOVK -- Copy a constant into a vector (generic).

procedure amovki (a, b, npix)

int	a
int	b[ARB]
int	npix, i

begin
	do i = 1, npix
	    b[i] = a
end