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