home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
math
/
math.arc
/
C.LBR
/
UNLINK.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1988-07-21
|
256 b
|
13 lines
#include "io.h"
unlink(name)
char *name;
{
struct fcb delfcb;
fcbinit(name,&delfcb);
return bdos(DELFIL,&delfcb);
}