aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/mingw.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h
index ffedb2bee..3c4ae9d8a 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -293,6 +293,7 @@ IMPL(getuid,int,1,void);
293int fcntl(int fd, int cmd, ...); 293int fcntl(int fd, int cmd, ...);
294#define fork() -1 294#define fork() -1
295IMPL(fsync,int,0,int fd UNUSED_PARAM); 295IMPL(fsync,int,0,int fd UNUSED_PARAM);
296int mingw_isatty(int fd);
296NOIMPL(kill,pid_t pid UNUSED_PARAM, int sig UNUSED_PARAM); 297NOIMPL(kill,pid_t pid UNUSED_PARAM, int sig UNUSED_PARAM);
297int link(const char *oldpath, const char *newpath); 298int link(const char *oldpath, const char *newpath);
298NOIMPL(mknod,const char *name UNUSED_PARAM, mode_t mode UNUSED_PARAM, dev_t device UNUSED_PARAM); 299NOIMPL(mknod,const char *name UNUSED_PARAM, mode_t mode UNUSED_PARAM, dev_t device UNUSED_PARAM);
@@ -311,6 +312,7 @@ NOIMPL(vfork,void);
311//#define dup mingw_dup 312//#define dup mingw_dup
312#define dup2 mingw_dup2 313#define dup2 mingw_dup2
313#define getcwd mingw_getcwd 314#define getcwd mingw_getcwd
315#define isatty(fd) mingw_isatty(fd)
314#define lchown(a,b,c) chown(a,b,c) 316#define lchown(a,b,c) chown(a,b,c)
315#define open mingw_open 317#define open mingw_open
316#define unlink mingw_unlink 318#define unlink mingw_unlink