home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SPACE 1
/
SPACE - Library 1 - Volume 1.iso
/
program
/
441
/
dlibs12
/
rename.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-11-23
|
167 b
|
10 lines
#include <errno.h>
int rename(oldname, newname)
char *oldname, *newname;
{
long gemdos();
return(errno = ((int) gemdos(0x56, 0, oldname, newname)));
}