[add Support.Compat
John Meacham <john@repetae.net>**20090524230039
 Ignore-this: 19a42e963e602f51d22b41037dad005f
] addfile ./Support/Compat.hs
hunk ./Support/Compat.hs 1
+{-# OPTIONS_GHC -cpp #-}
+{-# LANGUAGE CPP #-}
+module Support.Compat where
+
+-- This module is meant to contain code
+-- that only exists for compatability between platforms
+
+
+import Control.Exception
+
+
+#if __GLASGOW_HASKELL__ < 610
+type SomeException = Exception
+#endif