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