Improvements from review
[pforth] / csrc / pf_io.c
index 3aedb49..819dc9f 100644 (file)
@@ -221,5 +221,13 @@ FileStream *sdDeleteFile( const char *FileName )
     TOUCH(FileName);
     return NULL;
 }
     TOUCH(FileName);
     return NULL;
 }
+
+cell_t sdRenameFile( const char *OldName, const char *NewName )
+{
+    UNIMPLEMENTED("sdRenameFile");
+    TOUCH(OldName);
+    TOUCH(NewName);
+    return -1;
+}
 #endif
 
 #endif