Skip to content

Commit

Permalink
Remove an import loop
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Lynagh committed Jun 2, 2013
1 parent d901b4c commit 4b0addb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
4 changes: 2 additions & 2 deletions GHC/Foreign.hs
Expand Up @@ -49,12 +49,12 @@ import Control.Monad
import Data.Tuple (fst)
import Data.Maybe

import {-# SOURCE #-} System.Posix.Internals (puts)
import GHC.Show ( show )

import Foreign.Marshal.Alloc
import Foreign.ForeignPtr

import GHC.Debug
import GHC.Err (undefined)
import GHC.List
import GHC.Num
Expand All @@ -70,7 +70,7 @@ c_DEBUG_DUMP :: Bool
c_DEBUG_DUMP = False

putDebugMsg :: String -> IO ()
putDebugMsg | c_DEBUG_DUMP = puts
putDebugMsg | c_DEBUG_DUMP = debugLn
| otherwise = const (return ())


Expand Down
9 changes: 0 additions & 9 deletions System/Posix/Internals.hs-boot

This file was deleted.

0 comments on commit 4b0addb

Please sign in to comment.