home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Borland Programmer's Resource
/
Borland_Programmers_Resource_CD_1995.iso
/
utils
/
source
/
sh
/
std
/
stdc
/
stdio.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-05-18
|
301b
|
27 lines
/*
* Emulation of misc. ANSI C stdio functions
*/
/* $Header */
#include <stdio.h>
#if 1
int
remove(name)
Const char *name;
{
return unlink(name);
}
#endif
#if _V7
int
rename(oname, nname)
Const char *oname, *nname;
{
return link(oname, nname) == 0 && unlink(oname) == 0 ? 0 : -1;
}
#endif