| 2140 | } |
| 2141 | |
| 2142 | static pid_t mingw_spawnv(const char *cmd, const char **argv, int prepend_cmd) |
| 2143 | { |
| 2144 | return mingw_spawnve_fd(cmd, argv, NULL, NULL, prepend_cmd, 0, 1, 2); |
| 2145 | } |
| 2146 | |
| 2147 | pid_t mingw_spawnvpe(const char *cmd, const char **argv, char **deltaenv, |
| 2148 | const char *dir, |
no test coverage detected