blob: c07bb65a616f3a9b2ebcd731d319ad298d1886a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
include "fitsio.h"
procedure fsddef(ounit,bytlen,status)
# Data DEFinition
# re-define the length of the data unit
# this simply redefines the start of the next HDU
int ounit # i output file pointer
int bytlen # i length in bytes
int status # o error status
begin
call ftddef(ounit,bytlen,status)
end
|