blob: 7e5fa2669b829a869f90ec02769869a47e9816f5 (
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.
# ZAWRIM -- Write data to a binary file display device.
procedure zawrim (chan, buf, nbytes, offset)
int chan[ARB]
short buf[ARB]
int nbytes
long offset
begin
call iiswr (chan, buf, nbytes, offset)
end
|