diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/mingw.h | 6 |
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); | |||
367 | int kill(pid_t pid, int sig); | 367 | int kill(pid_t pid, int sig); |
368 | int link(const char *oldpath, const char *newpath); | 368 | int link(const char *oldpath, const char *newpath); |
369 | NOIMPL(mknod,const char *name UNUSED_PARAM, mode_t mode UNUSED_PARAM, dev_t device UNUSED_PARAM); | 369 | NOIMPL(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 */ | ||
371 | enum {DEV_NULL, DEV_ZERO, DEV_URANDOM, NOT_DEVICE}; | ||
372 | int get_dev_type(const char *filename); | ||
373 | void update_dev_fd(int dev, int fd); | ||
370 | int mingw_open (const char *filename, int oflags, ...); | 374 | int mingw_open (const char *filename, int oflags, ...); |
371 | int mingw_xopen(const char *filename, int oflags); | 375 | int mingw_xopen(const char *filename, int oflags); |
372 | void mingw_read_zero(int fd); | ||
373 | void mingw_read_random(int fd); | ||
374 | ssize_t mingw_read(int fd, void *buf, size_t count); | 376 | ssize_t mingw_read(int fd, void *buf, size_t count); |
375 | int mingw_close(int fd); | 377 | int mingw_close(int fd); |
376 | int pipe(int filedes[2]); | 378 | int pipe(int filedes[2]); |