From 7d80ba01310bcb3d43215d72602c2a8fe1e375ac Mon Sep 17 00:00:00 2001 From: Björn Stenberg Date: Wed, 15 Jan 2003 11:38:03 +0000 Subject: Added rename() to simulator git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3090 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/x11/file.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'uisimulator/x11/file.h') diff --git a/uisimulator/x11/file.h b/uisimulator/x11/file.h index 134019148c..63ccfe108c 100644 --- a/uisimulator/x11/file.h +++ b/uisimulator/x11/file.h @@ -23,10 +23,12 @@ int x11_open(char *name, int opts); int x11_creat(char *name, int mode); int x11_remove(char *name); +int x11_rename(char *oldpath, char *newpath); #define open(x,y) x11_open(x,y) #define creat(x,y) x11_open(x,y) #define remove(x) x11_remove(x) +#define rename(x,y) x11_rename(x,y) #include "../../firmware/common/file.h" -- cgit v1.2.3