summaryrefslogtreecommitdiff
path: root/prelude/Prelude.hs
diff options
context:
space:
mode:
Diffstat (limited to 'prelude/Prelude.hs')
-rw-r--r--prelude/Prelude.hs26
1 files changed, 0 insertions, 26 deletions
diff --git a/prelude/Prelude.hs b/prelude/Prelude.hs
deleted file mode 100644
index 34f133d83..000000000
--- a/prelude/Prelude.hs
+++ /dev/null
@@ -1,26 +0,0 @@
-{-# LANGUAGE PackageImports #-}
-{-# LANGUAGE CPP #-}
-
--- This custom Prelude emulates the API of the prelude
--- with base 4.8.
-
-module Prelude
-(
- module P
-#if MIN_VERSION_base(4,8,0)
-#else
-, Monoid(..)
-, Applicative(..)
-, (<$>)
-, (<$)
-#endif
-)
-where
-
-#if MIN_VERSION_base(4,8,0)
-import "base" Prelude as P
-#else
-import "base" Prelude as P
-import Control.Applicative
-import Data.Monoid
-#endif