blob: e87cbf50ff4837807469761de77df202405baa83 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
include "fitsio.h"
procedure fsfiou(iounit,status)
# Returns an unused I/O unit number which may then be used as input
# to the fsinit or fsopen procedures.
int iounit # i I/O unit number
int status # o error status
begin
call ftfiou(iounit,status)
end
|