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

short	a
short	b[ARB]
int	npix, i

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