blob: 56cb31b3c27cfe278e63b95de5c15cda8e6216c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
include "fitsio.h"
procedure fspnul(ounit,blank,status)
# Primary Null value definition
# Define the null value for an integer primary array.
# This must be the first HDU of the FITS file.
int ounit # i output file pointer
int blank # i value used to represent undefined values
int status # o error status
begin
call ftpnul(ounit,blank,status)
end
|