From f37ee04dfd080098c5c0c781a920e9fbe6bb0624 Mon Sep 17 00:00:00 2001 From: malcolm Date: Mon, 10 May 2004 09:22:59 +0000 Subject: [PATCH] [project @ 2004-05-10 09:22:59 by malcolm] RawSystem inclusion belongs inside the __GLASGOW_HASKELL__ ifdef. --- System/Cmd.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/System/Cmd.hs b/System/Cmd.hs index cb8d2d9..978c7a0 100644 --- a/System/Cmd.hs +++ b/System/Cmd.hs @@ -71,10 +71,11 @@ system cmd = n -> return (ExitFailure n) foreign import ccall unsafe "systemCmd" primSystem :: CString -> IO Int -#endif /* __GLASGOW_HASKELL__ */ -- --------------------------------------------------------------------------- -- rawSystem -- rawSystem is in a separate file, so we can #include it various places. #include "RawSystem.hs-inc" + +#endif /* __GLASGOW_HASKELL__ */ -- 1.7.10.4