diff options
author | Ian Lynagh <igloo@earth.li> | 2007-05-14 17:28:59 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-05-14 17:28:59 +0000 |
commit | 2c7a977952bb718cb8052d45e421b5eedf6b7524 (patch) | |
tree | 1a1e74633b97bd767c14c5145b80fdf212abf280 /compat | |
parent | b0e7c6f2d78e856761944c27755b442e36ead60f (diff) | |
download | haskell-2c7a977952bb718cb8052d45e421b5eedf6b7524.tar.gz |
Add filepath modules to compat/
Diffstat (limited to 'compat')
-rw-r--r-- | compat/System/FilePath.hs | 3 | ||||
-rw-r--r-- | compat/System/FilePath/Internal.hs | 3 | ||||
-rw-r--r-- | compat/System/FilePath/Posix.hs | 3 | ||||
-rw-r--r-- | compat/System/FilePath/Windows.hs | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/compat/System/FilePath.hs b/compat/System/FilePath.hs new file mode 100644 index 0000000000..749d727ab8 --- /dev/null +++ b/compat/System/FilePath.hs @@ -0,0 +1,3 @@ +{-# OPTIONS -cpp #-} +#include "filepath/System/FilePath.hs" +-- dummy comment diff --git a/compat/System/FilePath/Internal.hs b/compat/System/FilePath/Internal.hs new file mode 100644 index 0000000000..ce99a93a1e --- /dev/null +++ b/compat/System/FilePath/Internal.hs @@ -0,0 +1,3 @@ +{-# OPTIONS -cpp #-} +#include "filepath/System/FilePath/Internal.hs" +-- dummy comment diff --git a/compat/System/FilePath/Posix.hs b/compat/System/FilePath/Posix.hs new file mode 100644 index 0000000000..132f5cba91 --- /dev/null +++ b/compat/System/FilePath/Posix.hs @@ -0,0 +1,3 @@ +{-# OPTIONS -cpp #-} +#include "filepath/System/FilePath/Posix.hs" +-- dummy comment diff --git a/compat/System/FilePath/Windows.hs b/compat/System/FilePath/Windows.hs new file mode 100644 index 0000000000..85a3214504 --- /dev/null +++ b/compat/System/FilePath/Windows.hs @@ -0,0 +1,3 @@ +{-# OPTIONS -cpp #-} +#include "filepath/System/FilePath/Windows.hs" +-- dummy comment |