diff options
-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 ffedb2bee..3c4ae9d8a 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -293,6 +293,7 @@ IMPL(getuid,int,1,void); | |||
293 | int fcntl(int fd, int cmd, ...); | 293 | int fcntl(int fd, int cmd, ...); |
294 | #define fork() -1 | 294 | #define fork() -1 |
295 | IMPL(fsync,int,0,int fd UNUSED_PARAM); | 295 | IMPL(fsync,int,0,int fd UNUSED_PARAM); |
296 | int mingw_isatty(int fd); | ||
296 | NOIMPL(kill,pid_t pid UNUSED_PARAM, int sig UNUSED_PARAM); | 297 | NOIMPL(kill,pid_t pid UNUSED_PARAM, int sig UNUSED_PARAM); |
297 | int link(const char *oldpath, const char *newpath); | 298 | int link(const char *oldpath, const char *newpath); |
298 | NOIMPL(mknod,const char *name UNUSED_PARAM, mode_t mode UNUSED_PARAM, dev_t device UNUSED_PARAM); | 299 | NOIMPL(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 |