UTF8: Use #if instead of #ifdef.

This commit is contained in:
John MacFarlane 2011-01-30 17:01:50 -08:00
parent 9e57e93243
commit cf0a843239

View file

@ -39,7 +39,7 @@ module Text.Pandoc.UTF8 ( readFile
where
#ifdef MIN_VERSION_base(4,2,0)
#if MIN_VERSION_base(4,2,0)
import System.IO hiding (readFile, writeFile, getContents,
putStr, putStrLn, hPutStr, hPutStrLn, hGetContents)