aboutsummaryrefslogtreecommitdiff
path: root/sys/vops/lz/anotl.x
diff options
context:
space:
mode:
Diffstat (limited to 'sys/vops/lz/anotl.x')
-rw-r--r--sys/vops/lz/anotl.x15
1 files changed, 15 insertions, 0 deletions
diff --git a/sys/vops/lz/anotl.x b/sys/vops/lz/anotl.x
new file mode 100644
index 00000000..3ecb0fce
--- /dev/null
+++ b/sys/vops/lz/anotl.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 anotl (a, b, npix)
+
+long a[ARB], b[ARB]
+int npix, i
+long notl()
+
+begin
+ do i = 1, npix {
+ b[i] = notl (a[i])
+ }
+end