File: Locale.hs

package info (click to toggle)
haskell-filestore 0.6.5-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 224 kB
  • sloc: haskell: 1,604; makefile: 4
file content (9 lines) | stat: -rw-r--r-- 223 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
{-# LANGUAGE CPP #-}
module Data.FileStore.Compat.Locale ( defaultTimeLocale )
       where

#if MIN_VERSION_time(1,5,0)
import Data.Time.Format ( defaultTimeLocale )
#else
import System.Locale ( defaultTimeLocale )
#endif