From 6b70e270e1f0f5157cd78a889a258f02ae633202 Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Tue, 7 Apr 2015 10:57:16 +0100 Subject: [PATCH] add Central Imports --- Crypto/Internal/Imports.hs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Crypto/Internal/Imports.hs diff --git a/Crypto/Internal/Imports.hs b/Crypto/Internal/Imports.hs new file mode 100644 index 0000000..4c125c3 --- /dev/null +++ b/Crypto/Internal/Imports.hs @@ -0,0 +1,15 @@ +-- | +-- Module : Crypto.Internal.Imports +-- License : BSD-style +-- Maintainer : Vincent Hanquez +-- Stability : experimental +-- Portability : unknown +-- +{-# LANGUAGE BangPatterns #-} +module Crypto.Internal.Imports + ( module X + ) where + +import Data.Word as X +import Control.Applicative as X +import Control.Monad as X (forM, forM_, void)