From c10f36a0be68775953958540d745bbd44b081a30 Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 19 Jun 2003 10:38:15 +0000 Subject: [PATCH] [project @ 2003-06-19 10:38:15 by simonmar] Fix Windows build --- System/Cmd.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/System/Cmd.hs b/System/Cmd.hs index 4e7d284..0b093da 100644 --- a/System/Cmd.hs +++ b/System/Cmd.hs @@ -15,7 +15,7 @@ module System.Cmd ( system, -- :: String -> IO ExitCode #ifdef __GLASGOW_HASKELL__ - rawSystem, -- :: String -> IO ExitCode + rawSystem, -- :: FilePath -> [String] -> IO ExitCode #endif ) where @@ -26,6 +26,7 @@ import Foreign import Foreign.C import System.Exit import GHC.IOBase +#include "config.h" #endif #ifdef __HUGS__ -- 1.7.10.4