diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/mingw.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h index 22c59f483..5d2fb39ee 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -144,7 +144,7 @@ pid_t mingw_fork_compressor(int fd, const char *compressor, const char *mode); | |||
144 | #define popen mingw_popen | 144 | #define popen mingw_popen |
145 | #define pclose mingw_pclose | 145 | #define pclose mingw_pclose |
146 | 146 | ||
147 | IMPL(setlinebuf, void, ,FILE * UNUSED_PARAM) | 147 | IMPL(setlinebuf, void, ,FILE *fd UNUSED_PARAM) |
148 | 148 | ||
149 | /* | 149 | /* |
150 | * ANSI emulation wrappers | 150 | * ANSI emulation wrappers |
@@ -477,6 +477,10 @@ int mingw_open (const char *filename, int oflags, ...); | |||
477 | int mingw_xopen(const char *filename, int oflags); | 477 | int mingw_xopen(const char *filename, int oflags); |
478 | ssize_t mingw_open_read_close(const char *fn, void *buf, size_t size) FAST_FUNC; | 478 | ssize_t mingw_open_read_close(const char *fn, void *buf, size_t size) FAST_FUNC; |
479 | 479 | ||
480 | #ifndef IO_REPARSE_TAG_APPEXECLINK | ||
481 | # define IO_REPARSE_TAG_APPEXECLINK 0x8000001b | ||
482 | #endif | ||
483 | |||
480 | ssize_t mingw_read(int fd, void *buf, size_t count); | 484 | ssize_t mingw_read(int fd, void *buf, size_t count); |
481 | int mingw_close(int fd); | 485 | int mingw_close(int fd); |
482 | int pipe(int filedes[2]); | 486 | int pipe(int filedes[2]); |