summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dmake/msdos/runargv.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/dmake/msdos/runargv.c b/dmake/msdos/runargv.c
index 11a5ebd4b066..373b075c3fc5 100644
--- a/dmake/msdos/runargv.c
+++ b/dmake/msdos/runargv.c
@@ -1,4 +1,4 @@
-/* RCS $Id: runargv.c,v 1.5 2007-10-15 15:43:15 ihi Exp $
+/* RCS $Id: runargv.c,v 1.6 2008-03-05 18:35:53 kz Exp $
--
-- SYNOPSIS
-- Run a sub process.
@@ -23,6 +23,12 @@
-- Use cvs log to obtain detailed change logs.
*/
+#if defined(USE_CREATEPROCESS)
+/* MSVC6.0 and newer and MinGW use the parallel build enabled runargv(). */
+Force a compile-time blowup.
+This file should not be used, use unix/runargv.c instead.
+#endif
+
#include <process.h>
#include <errno.h>
#include "extern.h"