blob: e6811840b839421f8275c9517192231c4867b6ba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include "iis.h"
# ZARDIM -- Read data from a binary file display device.
procedure zardim (chan, buf, nbytes, offset)
int chan[ARB]
short buf[ARB]
int nbytes
long offset
begin
call iisrd (chan, buf, nbytes, offset)
end
|