aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2015-05-27 15:14:20 +0100
committerRon Yorston <rmy@pobox.com>2015-05-27 15:14:20 +0100
commit8a61b67d502ed4fbd5f480ca9458884b55ce7a95 (patch)
tree1767659baed55dfb23dd9ca1ac1a7582f9b7087b /include
parent42c4505e1e5eb96314176e7b7c1b28adcce22310 (diff)
downloadbusybox-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')
-rw-r--r--include/mingw.h1
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
144FILE *mingw_popen(const char *cmd, const char *mode); 144FILE *mingw_popen(const char *cmd, const char *mode);
145int mingw_popen_fd(const char *cmd, const char *mode, int fd0, pid_t *pid);
145int mingw_pclose(FILE *fd); 146int mingw_pclose(FILE *fd);
146#undef popen 147#undef popen
147#undef pclose 148#undef pclose