blob: 989358d97074742c93a4bd358d60251d92608685 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <mach.h>
include "m75.h"
# ZCLM75 -- Close and deallocate the IIS.
procedure zclm75 (ifcb, status)
int ifcb # pointer to channel descriptor passed as int
int status
pointer fcb
begin
fcb = ifcb
call zclsbf (FCB_CHAN(fcb), status)
call mfree (fcb, TY_STRUCT)
end
|