From 176a386c7803f560e70a5d0467c58f29b9664d75 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 4 Apr 2007 16:30:51 +0000 Subject: [PATCH] HsByteArray doesn't exist --- cbits/longlong.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cbits/longlong.c b/cbits/longlong.c index 7792675..c814773 100644 --- a/cbits/longlong.c +++ b/cbits/longlong.c @@ -90,7 +90,7 @@ HsWord64 hs_wordToWord64 (HsWord w) {return (HsWord64) w;} HsWord hs_word64ToWord (HsWord64 w) {return (HsWord) w;} HsInt64 hs_word64ToInt64 (HsWord64 w) {return (HsInt64) w;} -HsWord64 hs_integerToWord64 (HsInt sa, HsByteArray /* Really: mp_limb_t* */ da) +HsWord64 hs_integerToWord64 (HsInt sa, StgByteArray /* Really: mp_limb_t* */ da) { mp_limb_t* d; HsInt s; @@ -108,7 +108,7 @@ HsWord64 hs_integerToWord64 (HsInt sa, HsByteArray /* Really: mp_limb_t* */ da) return res; } -HsInt64 hs_integerToInt64 (HsInt sa, HsByteArray /* Really: mp_limb_t* */ da) +HsInt64 hs_integerToInt64 (HsInt sa, StgByteArray /* Really: mp_limb_t* */ da) { mp_limb_t* d; HsInt s; -- 1.7.10.4