diff options
Diffstat (limited to 'lib/win32/emu.h')
-rw-r--r-- | lib/win32/emu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/win32/emu.h b/lib/win32/emu.h index a4af6e64..ec6c0918 100644 --- a/lib/win32/emu.h +++ b/lib/win32/emu.h @@ -337,6 +337,7 @@ int emu_stat (const char* pName, struct stat* st); int emu_utimes (const char* pName, const struct timeval[]); int emu_chmod (const char* pName, mode_t mode); char* emu_getcwd (char* pBuffer, int BufSize); +int emu_rename (const char* pOldName, const char* pNewName); #define chdir(directory) emu_chdir (directory) #define mkdir(path, mode) emu_mkdir (path) @@ -347,6 +348,7 @@ char* emu_getcwd (char* pBuffer, int BufSize); #define utimes(buffer, times) emu_utimes (buffer, times) #define chmod(file, mode) emu_chmod (file, mode) #define getcwd(buffer, size) emu_getcwd (buffer, size) +#define rename(oldname, newname) emu_rename (oldname, newname) int statfs(const char * name, struct statfs * s); |