summaryrefslogtreecommitdiff
path: root/doio.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@engin.umich.edu>1997-06-24 10:49:12 +1200
committerTim Bunce <Tim.Bunce@ig.co.uk>1997-08-07 00:00:00 +1200
commit6890e559d7ce8a57fe2b6b18ef51d300ce98843f (patch)
tree80495b2027569001ce15fa521efa9ce066381298 /doio.c
parentb4793f7f58b137d8b2f6d505d6c77dee2cd8cb25 (diff)
downloadperl-6890e559d7ce8a57fe2b6b18ef51d300ce98843f.tar.gz
exec() fixed on win32
exec() doesn't work right on Win32 because of the UNIX-specific do_exec(). This patch fixes that, and updates the README.win32 in spots. p5p-msgid: 199706241525.LAA06554@aatma.engin.umich.edu
Diffstat (limited to 'doio.c')
-rw-r--r--doio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/doio.c b/doio.c
index f98af9bf6f..8373d09368 100644
--- a/doio.c
+++ b/doio.c
@@ -942,7 +942,7 @@ do_execfree()
}
}
-#ifndef OS2
+#if !defined(OS2) && !defined(WIN32)
bool
do_exec(cmd)
@@ -1033,7 +1033,7 @@ char *cmd;
return FALSE;
}
-#endif /* OS2 */
+#endif /* OS2 || WIN32 */
I32
apply(type,mark,sp)