diff options
Diffstat (limited to 'Utility/Mounts.hsc')
-rw-r--r-- | Utility/Mounts.hsc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Utility/Mounts.hsc b/Utility/Mounts.hsc index ad4adf334..3f121233a 100644 --- a/Utility/Mounts.hsc +++ b/Utility/Mounts.hsc @@ -1,5 +1,7 @@ {- Interface to mtab (and fstab) - + - Deprecated; moving to mountpoints library on hackage. + - - Derived from hsshellscript, originally written by - Volker Wysk <hsss@volker-wysk.de> - @@ -7,6 +9,7 @@ - Joey Hess <id@joeyh.name> - - Licensed under the GNU LGPL version 2.1 or higher. + - -} {-# LANGUAGE ForeignFunctionInterface #-} @@ -34,7 +37,7 @@ data Mntent = Mntent { mnt_fsname :: String , mnt_dir :: FilePath , mnt_type :: String - } deriving (Read, Show, Eq, Ord) + } deriving (Show, Eq, Ord) #ifndef __ANDROID__ |