diff options
-rw-r--r-- | common/file.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/common/file.cpp b/common/file.cpp index 2c08753696..be557ff634 100644 --- a/common/file.cpp +++ b/common/file.cpp @@ -134,18 +134,6 @@ #define clearerr(handle) symbian_clearerr(handle) #endif -#ifdef __DC__ - /* Can't remove files from CD-ROM... */ - #define remove(name) ((errno = EROFS), -1) -#endif - -#ifdef _WIN32_WCE - #define ENOENT 2 - #define EACCES 13 - static int errno; - #define remove(x) ( errno = (remove(x) == 0) ? 0 : EACCES ) -#endif - namespace Common { typedef HashMap<String, int, CaseSensitiveString_Hash, CaseSensitiveString_EqualTo> StringIntMap; |