blob: 25aa36f71931b9ee636fa18431c293ccde511f0f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
include "fitsio.h"
procedure fsdcol(ounit,colnum,status)
# delete column in a table
int ounit # i output file pointer
int colnum # i column to be deleted
int status # o error status
begin
call ftdcol(ounit,colnum,status)
end
|