projects
/
ghc-base.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4a23897
)
[project @ 2002-11-06 23:47:16 by ross]
author
ross
<unknown>
Wed, 6 Nov 2002 23:47:16 +0000
(23:47 +0000)
committer
ross
<unknown>
Wed, 6 Nov 2002 23:47:16 +0000
(23:47 +0000)
Minor #elif adjustment (__HUGS__ vs __NHC__).
Foreign/Marshal/Alloc.hs
patch
|
blob
|
history
diff --git
a/Foreign/Marshal/Alloc.hs
b/Foreign/Marshal/Alloc.hs
index
b0e528b
..
31f96ec
100644
(file)
--- a/
Foreign/Marshal/Alloc.hs
+++ b/
Foreign/Marshal/Alloc.hs
@@
-42,10
+42,10
@@
import GHC.Real
import GHC.Ptr
import GHC.Err
import GHC.Base
-#elif defined(__HUGS__)
-import Control.Exception ( bracket )
-#else
+#elif defined(__NHC__)
import System.IO ( bracket )
+#else
+import Control.Exception ( bracket )
#endif