From 0f0a57837220e737b6dbed78d2eb3f7193f3c682 Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 31 Jul 2001 14:36:19 +0000 Subject: [PATCH] [project @ 2001-07-31 14:36:19 by simonmar] add missing #include --- Data/Array/Base.hs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Data/Array/Base.hs b/Data/Array/Base.hs index 0c1f073..2d7cdca 100644 --- a/Data/Array/Base.hs +++ b/Data/Array/Base.hs @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Base.hs,v 1.3 2001/07/31 13:38:10 simonmar Exp $ +-- $Id: Base.hs,v 1.4 2001/07/31 14:36:19 simonmar Exp $ -- -- Basis for IArray and MArray. Not intended for external consumption; -- use IArray or MArray instead. @@ -38,6 +38,8 @@ import GHC.Word ( Word8(..), Word16(..), Word32(..), Word64(..) ) import Data.Dynamic #include "Dynamic.h" +#include "MachDeps.h" + ----------------------------------------------------------------------------- -- Class of immutable arrays -- 1.7.10.4