From 09c9b6a7d04d95595097fcfe2505b380e754bf00 Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 1 Mar 2001 13:06:54 +0000 Subject: [PATCH] [project @ 2001-03-01 13:06:54 by simonmar] fix a couple of foreign imports --- ghc/lib/std/PrelInt.lhs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/lib/std/PrelInt.lhs b/ghc/lib/std/PrelInt.lhs index ed48a37..e9ba3c1 100644 --- a/ghc/lib/std/PrelInt.lhs +++ b/ghc/lib/std/PrelInt.lhs @@ -465,8 +465,8 @@ foreign import "stg_plusInt64" unsafe plusInt64# :: Int64# -> Int64# -> foreign import "stg_minusInt64" unsafe minusInt64# :: Int64# -> Int64# -> Int64# foreign import "stg_timesInt64" unsafe timesInt64# :: Int64# -> Int64# -> Int64# foreign import "stg_negateInt64" unsafe negateInt64# :: Int64# -> Int64# -foreign import "stg_quotWord64" unsafe quotInt64# :: Int64# -> Int64# -> Int64# -foreign import "stg_remWord64" unsafe remInt64# :: Int64# -> Int64# -> Int64# +foreign import "stg_quotInt64" unsafe quotInt64# :: Int64# -> Int64# -> Int64# +foreign import "stg_remInt64" unsafe remInt64# :: Int64# -> Int64# -> Int64# foreign import "stg_intToInt64" unsafe intToInt64# :: Int# -> Int64# foreign import "stg_int64ToInt" unsafe int64ToInt# :: Int64# -> Int# foreign import "stg_wordToWord64" unsafe wordToWord64# :: Word# -> Word64# -- 1.7.10.4