[project @ 2003-08-27 08:41:07 by simonmar]
[ghc-base.git] / GHC / Unicode.hsc
index d58722a..fc41060 100644 (file)
@@ -194,7 +194,6 @@ isAlphaNum c                =  isAlpha c || isDigit c
 
 -- Case-changing operations
 
-toUpper, toLower       :: Char -> Char
 toUpper c@(C## c##)
   | isAsciiLower c    = C## (chr## (ord## c## -## 32##))
   | isAscii c         = c