diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/mingw.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h index adb810ec5..ed7884e39 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
| @@ -566,6 +566,14 @@ int utimes(const char *file_name, const struct timeval times[2]); | |||
| 566 | #define is_unc_path(x) (strlen(x) > 4 && is_dir_sep(x[0]) && \ | 566 | #define is_unc_path(x) (strlen(x) > 4 && is_dir_sep(x[0]) && \ |
| 567 | is_dir_sep(x[1]) && !is_dir_sep(x[2])) | 567 | is_dir_sep(x[1]) && !is_dir_sep(x[2])) |
| 568 | 568 | ||
| 569 | typedef struct { | ||
| 570 | char *path; | ||
| 571 | char *name; | ||
| 572 | char *opts; | ||
| 573 | char buf[100]; | ||
| 574 | } interp_t; | ||
| 575 | |||
| 576 | int FAST_FUNC parse_interpreter(const char *cmd, interp_t *interp); | ||
| 569 | char ** FAST_FUNC grow_argv(char **argv, int n); | 577 | char ** FAST_FUNC grow_argv(char **argv, int n); |
| 570 | pid_t FAST_FUNC mingw_spawn(char **argv); | 578 | pid_t FAST_FUNC mingw_spawn(char **argv); |
| 571 | intptr_t FAST_FUNC mingw_spawn_detach(char **argv); | 579 | intptr_t FAST_FUNC mingw_spawn_detach(char **argv); |
