aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mingw.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h
index a59ce6fc4..46be4dc23 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -395,6 +395,10 @@ int kill(pid_t pid, int sig);
395int link(const char *oldpath, const char *newpath); 395int link(const char *oldpath, const char *newpath);
396NOIMPL(mknod,const char *name UNUSED_PARAM, mode_t mode UNUSED_PARAM, dev_t device UNUSED_PARAM); 396NOIMPL(mknod,const char *name UNUSED_PARAM, mode_t mode UNUSED_PARAM, dev_t device UNUSED_PARAM);
397int mingw_open (const char *filename, int oflags, ...); 397int mingw_open (const char *filename, int oflags, ...);
398void mingw_read_zero(int fd);
399void mingw_read_random(int fd);
400ssize_t mingw_read(int fd, void *buf, size_t count);
401int mingw_close(int fd);
398int pipe(int filedes[2]); 402int pipe(int filedes[2]);
399NOIMPL(readlink,const char *path UNUSED_PARAM, char *buf UNUSED_PARAM, size_t bufsiz UNUSED_PARAM); 403NOIMPL(readlink,const char *path UNUSED_PARAM, char *buf UNUSED_PARAM, size_t bufsiz UNUSED_PARAM);
400NOIMPL(setgid,gid_t gid UNUSED_PARAM); 404NOIMPL(setgid,gid_t gid UNUSED_PARAM);
@@ -418,6 +422,7 @@ int mingw_isatty(int fd);
418#define getcwd mingw_getcwd 422#define getcwd mingw_getcwd
419#define lchown chown 423#define lchown chown
420#define open mingw_open 424#define open mingw_open
425#define close mingw_close
421#define unlink mingw_unlink 426#define unlink mingw_unlink
422#define rmdir mingw_rmdir 427#define rmdir mingw_rmdir
423#undef lseek 428#undef lseek