aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mingw.h8
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
569typedef struct {
570 char *path;
571 char *name;
572 char *opts;
573 char buf[100];
574} interp_t;
575
576int FAST_FUNC parse_interpreter(const char *cmd, interp_t *interp);
569char ** FAST_FUNC grow_argv(char **argv, int n); 577char ** FAST_FUNC grow_argv(char **argv, int n);
570pid_t FAST_FUNC mingw_spawn(char **argv); 578pid_t FAST_FUNC mingw_spawn(char **argv);
571intptr_t FAST_FUNC mingw_spawn_detach(char **argv); 579intptr_t FAST_FUNC mingw_spawn_detach(char **argv);