From df67626cb7b19bd5f8278b23b9c11962661ccab1 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 8 Dec 2016 13:58:03 -0400 Subject: [PATCH] fix build with old ghc --- P2P/Protocol.hs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/P2P/Protocol.hs b/P2P/Protocol.hs index f51ea7f98c..8aabb37d7d 100644 --- a/P2P/Protocol.hs +++ b/P2P/Protocol.hs @@ -29,6 +29,8 @@ import System.Exit (ExitCode(..)) import System.IO import qualified Data.ByteString.Lazy as L import Data.Char +import Control.Applicative +import Prelude newtype Offset = Offset Integer deriving (Show)