blob: 14d97926e84e18066533c84a2437cbae5fd2801a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
*/
#define import_spp
#define import_libc
#define import_xnames
#include <iraf.h>
/* C_DELETE -- FIO delete file.
*/
int
c_delete (
char *fname /* name of file to be opened */
)
{
iferr (DELETE (c_sppstr(fname)))
return (ERR);
else
return (OK);
}
|