aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mingw.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/mingw.h b/include/mingw.h
index a54a6ac85..bc0772574 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -367,10 +367,12 @@ int fsync(int fd);
367int kill(pid_t pid, int sig); 367int kill(pid_t pid, int sig);
368int link(const char *oldpath, const char *newpath); 368int link(const char *oldpath, const char *newpath);
369NOIMPL(mknod,const char *name UNUSED_PARAM, mode_t mode UNUSED_PARAM, dev_t device UNUSED_PARAM); 369NOIMPL(mknod,const char *name UNUSED_PARAM, mode_t mode UNUSED_PARAM, dev_t device UNUSED_PARAM);
370/* order of devices must match that in get_dev_type */
371enum {DEV_NULL, DEV_ZERO, DEV_URANDOM, NOT_DEVICE};
372int get_dev_type(const char *filename);
373void update_dev_fd(int dev, int fd);
370int mingw_open (const char *filename, int oflags, ...); 374int mingw_open (const char *filename, int oflags, ...);
371int mingw_xopen(const char *filename, int oflags); 375int mingw_xopen(const char *filename, int oflags);
372void mingw_read_zero(int fd);
373void mingw_read_random(int fd);
374ssize_t mingw_read(int fd, void *buf, size_t count); 376ssize_t mingw_read(int fd, void *buf, size_t count);
375int mingw_close(int fd); 377int mingw_close(int fd);
376int pipe(int filedes[2]); 378int pipe(int filedes[2]);