home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
listings
/
v_10_02
/
1002014a
< prev
next >
Wrap
Text File
|
1991-12-17
|
248b
|
16 lines
Listing 1 -- the file remove.c
/* remove function -- UNIX version */
#include "xstdio.h"
/* UNIX system call */
int _Unlink(const char *);
int (remove)(const char *fname)
{ /* remove a file */
return (_Unlink(fname));
}