diff options
author | Ron Yorston <rmy@pobox.com> | 2015-05-27 15:14:20 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2015-05-27 15:14:20 +0100 |
commit | 8a61b67d502ed4fbd5f480ca9458884b55ce7a95 (patch) | |
tree | 1767659baed55dfb23dd9ca1ac1a7582f9b7087b /include/mingw.h | |
parent | 42c4505e1e5eb96314176e7b7c1b28adcce22310 (diff) | |
download | busybox-w32-8a61b67d502ed4fbd5f480ca9458884b55ce7a95.tar.gz busybox-w32-8a61b67d502ed4fbd5f480ca9458884b55ce7a95.tar.bz2 busybox-w32-8a61b67d502ed4fbd5f480ca9458884b55ce7a95.zip |
mingw: add routine to pipe a file descriptor to/from a command
Diffstat (limited to 'include/mingw.h')
-rw-r--r-- | include/mingw.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h index d6ed909b5..bf8cd0c4c 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -142,6 +142,7 @@ int mingw_rename(const char*, const char*); | |||
142 | #define rename mingw_rename | 142 | #define rename mingw_rename |
143 | 143 | ||
144 | FILE *mingw_popen(const char *cmd, const char *mode); | 144 | FILE *mingw_popen(const char *cmd, const char *mode); |
145 | int mingw_popen_fd(const char *cmd, const char *mode, int fd0, pid_t *pid); | ||
145 | int mingw_pclose(FILE *fd); | 146 | int mingw_pclose(FILE *fd); |
146 | #undef popen | 147 | #undef popen |
147 | #undef pclose | 148 | #undef pclose |