X-Git-Url: http://git.subgeniuskitty.com/pforth/.git/blobdiff_plain/82b409b0854d22efe9bbf8b2e7c2d003ab06e2e3..6f3de3962bb26f4e1be714dfefc78de0fc16b376:/csrc/pf_io.c diff --git a/csrc/pf_io.c b/csrc/pf_io.c index 3aedb49..643178b 100644 --- a/csrc/pf_io.c +++ b/csrc/pf_io.c @@ -221,5 +221,13 @@ FileStream *sdDeleteFile( const char *FileName ) TOUCH(FileName); return NULL; } + +int sdRenameFile( const char *OldName, const char *NewName ) +{ + UNIMPLEMENTED("sdRenameFile"); + TOUCH(OldName); + TOUCH(NewName); + return -1; +} #endif