blob: ddd39b2a498db0bf493d4728bf443ef52fa1c2c6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
include "fitsio.h"
procedure fsclos(iunit,status)
# close a FITS file that was previously opened with ftopen or ftinit
int iunit # i input file pointer
int status # o error status
begin
call ftclos(iunit,status)
end
|