aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mingw.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h
index 762eb143a..eae6a7d3a 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -141,6 +141,15 @@ int link(const char *oldpath, const char *newpath);
141int mingw_open (const char *filename, int oflags, ...); 141int mingw_open (const char *filename, int oflags, ...);
142#define open mingw_open 142#define open mingw_open
143 143
144int mingw_close (int fd);
145#define close mingw_close
146
147int mingw_dup (int fd);
148#define dup mingw_dup
149
150int mingw_dup2 (int fd, int fdto);
151#define dup2 mingw_dup2
152
144char *mingw_getcwd(char *pointer, int len); 153char *mingw_getcwd(char *pointer, int len);
145#define getcwd mingw_getcwd 154#define getcwd mingw_getcwd
146 155