[project @ 2001-09-17 17:23:32 by sewardj]
authorsewardj <unknown>
Mon, 17 Sep 2001 17:23:32 +0000 (17:23 +0000)
committersewardj <unknown>
Mon, 17 Sep 2001 17:23:32 +0000 (17:23 +0000)
Fix utterly bogus implementation of system on Windoze.

ghc/lib/std/cbits/system.c

index b912a48..62f1360 100644 (file)
@@ -1,7 +1,7 @@
 /* 
  * (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
  *
- * $Id: system.c,v 1.18 2001/08/14 13:40:08 sewardj Exp $
+ * $Id: system.c,v 1.19 2001/09/17 17:23:32 sewardj Exp $
  *
  * system Runtime Support
  */
@@ -13,6 +13,7 @@
 
 #if defined(mingw32_TARGET_OS)
 #include <windows.h>
+#include <stdlib.h>
 #endif
 
 HsInt
@@ -20,8 +21,7 @@ systemCmd(HsAddr cmd)
 {
   /* -------------------- WINDOWS VERSION --------------------- */
 #if defined(mingw32_TARGET_OS)
-  if (system(cmd) < 0) return -1;
-  return 0;
+    return system(cmd);
 #else
   /* -------------------- UNIX VERSION --------------------- */
     int pid;