aboutsummaryrefslogtreecommitdiff
path: root/sys/vops/lz/anots.x
diff options
context:
space:
mode:
Diffstat (limited to 'sys/vops/lz/anots.x')
-rw-r--r--sys/vops/lz/anots.x15
1 files changed, 15 insertions, 0 deletions
diff --git a/sys/vops/lz/anots.x b/sys/vops/lz/anots.x
new file mode 100644
index 00000000..4c952636
--- /dev/null
+++ b/sys/vops/lz/anots.x
@@ -0,0 +1,15 @@
+# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
+
+# ANOT -- Compute the bitwise boolean complement of a vector (generic).
+
+procedure anots (a, b, npix)
+
+short a[ARB], b[ARB]
+int npix, i
+short nots()
+
+begin
+ do i = 1, npix {
+ b[i] = nots (a[i])
+ }
+end