[project @ 1999-05-11 17:05:43 by keithw]
[ghc-hetmet.git] / ghc / lib / std / PrelCCall.lhs
index 6f886ff..5526699 100644 (file)
@@ -8,8 +8,8 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 
 module PrelCCall (
-       CCallable(..), CReturnable(..),
-       Word(..)
+       CCallable(..),
+       CReturnable(..)
    ) where
 
 import PrelBase
@@ -42,12 +42,6 @@ instance CCallable   Double
 instance CCallable   Double#
 instance CReturnable Double
 
-data Word = W# Word#   deriving (Eq, Ord) -- Glasgow extension
-
-instance CCallable Word
-instance CCallable Word#
-instance CReturnable Word
-
 instance CReturnable () -- Why, exactly?
 \end{code}