blob: fc535fc8d9dcc411f3c94fe02c7fd556d12bf52c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
include "fitsio.h"
procedure fsdrec(iunit,pos,status)
# delete a header keyword
int iunit # i input file pointer
int pos # i position of the keyword to be deleted
int status # o error status
begin
call ftdrec(iunit,pos,status)
end
|