diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-14 06:57:27 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-10 19:28:27 +1000 |
commit | f630faee2045fa28c61a3cea760ab8a9b65c1bb3 (patch) | |
tree | 18d8ddef8d0ba0f5055294a3401d6ca3a674ae16 /include | |
parent | cd506ae1ad813efcfa89b6373fe3e76e3c4dd9a4 (diff) | |
download | busybox-w32-f630faee2045fa28c61a3cea760ab8a9b65c1bb3.tar.gz busybox-w32-f630faee2045fa28c61a3cea760ab8a9b65c1bb3.tar.bz2 busybox-w32-f630faee2045fa28c61a3cea760ab8a9b65c1bb3.zip |
win32: Replace rename() (WHY?)
Diffstat (limited to 'include')
-rw-r--r-- | include/mingw.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h index ed718fb5d..c2953c390 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -121,7 +121,9 @@ NOIMPL(sigfillset,int *mask UNUSED_PARAM); | |||
121 | 121 | ||
122 | int fdprintf(int fd, const char *format, ...); | 122 | int fdprintf(int fd, const char *format, ...); |
123 | FILE* mingw_fopen(const char *filename, const char *mode); | 123 | FILE* mingw_fopen(const char *filename, const char *mode); |
124 | int mingw_rename(const char*, const char*); | ||
124 | #define fopen mingw_fopen | 125 | #define fopen mingw_fopen |
126 | #define rename mingw_rename | ||
125 | 127 | ||
126 | /* | 128 | /* |
127 | * ANSI emulation wrappers | 129 | * ANSI emulation wrappers |