remove unnecessary -#include options
authorSimon Marlow <marlowsd@gmail.com>
Sun, 2 Aug 2009 19:06:51 +0000 (19:06 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Sun, 2 Aug 2009 19:06:51 +0000 (19:06 +0000)
compiler/ghci/Linker.lhs
compiler/ghci/ObjLink.lhs
ghc/InteractiveUI.hs

index 21a2064..9f45579 100644 (file)
@@ -12,8 +12,6 @@ necessary.
 
 
 \begin{code}
-{-# OPTIONS -optc-DNON_POSIX_SOURCE -#include "Linker.h" #-}
-
 {-# OPTIONS -fno-cse #-}
 -- -fno-cse is needed for GLOBAL_VAR's to behave properly
 
index 7981c82..c8a6682 100644 (file)
@@ -9,8 +9,6 @@
 Primarily, this module consists of an interface to the C-land dynamic linker.
 
 \begin{code}
-{-# OPTIONS -#include "Linker.h" #-}
-
 module ObjLink ( 
    initObjLinker,       -- :: IO ()
    loadDLL,             -- :: String -> IO (Maybe String)
index 3675398..e096fb2 100644 (file)
@@ -1,7 +1,6 @@
 {-# OPTIONS -fno-cse #-}
 -- -fno-cse is needed for GLOBAL_VAR's to behave properly
 
-{-# OPTIONS -#include "Linker.h" #-}
 {-# OPTIONS_GHC -fno-warn-name-shadowing #-}
 -----------------------------------------------------------------------------
 --