aboutsummaryrefslogtreecommitdiffstats
path: root/win32
diff options
context:
space:
mode:
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 5c525d574b..dba0c71ce2 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -916,6 +916,12 @@ rb_w32_aspawn(int mode, const char *prog, char *const *argv)
return rb_w32_spawn(mode, rb_w32_join_argv(cmd, argv), prog);
}
+#ifdef HAVE_SYS_PARAM_H
+# include <sys/param.h>
+#else
+# define MAXPATHLEN 512
+#endif
+
static struct ChildRecord *
CreateChild(const char *cmd, const char *prog, SECURITY_ATTRIBUTES *psa,
HANDLE hInput, HANDLE hOutput, HANDLE hError)
@@ -1107,12 +1113,6 @@ insert(const char *path, VALUE vinfo, void *enc)
return 0;
}
-#ifdef HAVE_SYS_PARAM_H
-# include <sys/param.h>
-#else
-# define MAXPATHLEN 512
-#endif
-
static NtCmdLineElement **
cmdglob(NtCmdLineElement *patt, NtCmdLineElement **tail)