a064991ff79c77d47e8a9073c32172085c24c878
[ghc-base.git] / System / Info.hs
1 -----------------------------------------------------------------------------
2 -- |
3 -- Module      :  System.Info
4 -- Copyright   :  (c) The University of Glasgow 2001
5 -- License     :  BSD-style (see the file libraries/core/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  experimental
9 -- Portability :  portable
10 --
11 -- Misc information about the characteristics of the host 
12 -- architecture\/machine lucky enough to run your program.
13 --
14 -----------------------------------------------------------------------------
15
16 #include "MachDeps.h"
17
18 module System.Info
19    (
20        os,                  -- :: String
21        arch                 -- :: String
22    ) where
23
24 import Prelude
25
26 arch :: String
27 arch = HOST_ARCH
28
29 os :: String
30 os = HOST_OS