diff options
Diffstat (limited to 'sys/vops/ak/aclrc.x')
-rw-r--r-- | sys/vops/ak/aclrc.x | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/vops/ak/aclrc.x b/sys/vops/ak/aclrc.x new file mode 100644 index 00000000..03a82c86 --- /dev/null +++ b/sys/vops/ak/aclrc.x @@ -0,0 +1,13 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +# ACLR -- Zero a vector (generic). + +procedure aclrc (a, npix) + +char a[ARB] +int npix, i + +begin + do i = 1, npix + a[i] = 0 +end |