aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mingw.h6
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
147IMPL(setlinebuf, void, ,FILE * UNUSED_PARAM) 147IMPL(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, ...);
477int mingw_xopen(const char *filename, int oflags); 477int mingw_xopen(const char *filename, int oflags);
478ssize_t mingw_open_read_close(const char *fn, void *buf, size_t size) FAST_FUNC; 478ssize_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
480ssize_t mingw_read(int fd, void *buf, size_t count); 484ssize_t mingw_read(int fd, void *buf, size_t count);
481int mingw_close(int fd); 485int mingw_close(int fd);
482int pipe(int filedes[2]); 486int pipe(int filedes[2]);