[project @ 2002-05-09 13:16:29 by simonmar]
[ghc-base.git] / System / Cmd.hs
index 92ac6ed..0be8008 100644 (file)
@@ -1,15 +1,13 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.Cmd
 -- Copyright   :  (c) The University of Glasgow 2001
--- License     :  BSD-style (see the file libraries/core/LICENSE)
+-- License     :  BSD-style (see the file libraries/base/LICENSE)
 -- 
 -- Maintainer  :  libraries@haskell.org
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Cmd.hs,v 1.1 2002/02/06 10:14:26 simonmar Exp $
---
 -- Executing a command.
 --
 -----------------------------------------------------------------------------
@@ -50,4 +48,4 @@ system cmd =
         0  -> return ExitSuccess
         n  -> return (ExitFailure n)
 
-foreign import ccall "systemCmd" unsafe primSystem :: CString -> IO Int
+foreign import ccall unsafe "systemCmd" primSystem :: CString -> IO Int