diff options
author | Ron Yorston <rmy@pobox.com> | 2012-04-03 15:41:32 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2012-04-03 15:41:32 +0100 |
commit | 6a82920046979ff373ec55b1ace6e542c8cb13f5 (patch) | |
tree | 67137494e1b45940ce1ae6a348e68e56135bbad2 /include | |
parent | d0b801b9459f48a6dd5446fb77070639b8c1462b (diff) | |
download | busybox-w32-6a82920046979ff373ec55b1ace6e542c8cb13f5.tar.gz busybox-w32-6a82920046979ff373ec55b1ace6e542c8cb13f5.tar.bz2 busybox-w32-6a82920046979ff373ec55b1ace6e542c8cb13f5.zip |
Make fake fcntl(F_DUPFD) for WIN32
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 f89297df9..9c9767b3e 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -139,6 +139,8 @@ int mingw_rename(const char*, const char*); | |||
139 | #define fopen mingw_fopen | 139 | #define fopen mingw_fopen |
140 | #define rename mingw_rename | 140 | #define rename mingw_rename |
141 | 141 | ||
142 | #define setlinebuf(fd) setvbuf(fd, (char *) NULL, _IOLBF, 0) | ||
143 | |||
142 | /* | 144 | /* |
143 | * ANSI emulation wrappers | 145 | * ANSI emulation wrappers |
144 | */ | 146 | */ |