[project @ 2003-04-11 11:43:09 by ross]
[ghc-base.git] / cbits / system.c
index 6c4e7f5..3ace591 100644 (file)
@@ -1,7 +1,7 @@
 /* 
  * (c) The University of Glasgow 2002
  *
- * $Id: system.c,v 1.5 2002/02/07 11:13:30 simonmar Exp $
+ * $Id: system.c,v 1.7 2003/02/04 11:55:54 simonmar Exp $
  *
  * system Runtime Support
  */
 #include <stdlib.h>
 #endif
 
+#ifdef HAVE_VFORK_H
+#include <vfork.h>
+#endif
+
+#ifdef HAVE_VFORK
+#define fork vfork
+#endif
+
 HsInt
 systemCmd(HsAddr cmd)
 {
   /* -------------------- WINDOWS VERSION --------------------- */
-#if defined(mingw32_TARGET_OS)
+#if defined(mingw32_TARGET_OS) || defined(cygwin32_TARGET_OS)
     return system(cmd);
 #else
   /* -------------------- UNIX VERSION --------------------- */