blob: 69ca0d922d440cadc393495d20af67449e2e33eb (
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
|
{-# LANGUAGE NoImplicitPrelude #-}
{-
This SOURCE-imported hs-boot module cuts a big dependency loop:
module ‘GHC.Stable’
imports module ‘GHC.Ptr’
imports module ‘Numeric’
imports module ‘GHC.Read’
imports module ‘GHC.Unicode’
imports module ‘GHC.Unicode.Internal.Char.UnicodeData.GeneralCategory’
imports module ‘GHC.Unicode.Internal.Bits’
imports module ‘GHC.ByteOrder’
imports module ‘GHC.Generics’
imports module ‘Data.Ord’
imports module ‘Foreign.Storable’
imports module ‘GHC.Stable’
-}
module GHC.ByteOrder where
import GHC.Types ()
data ByteOrder
= BigEndian
| LittleEndian
targetByteOrder :: ByteOrder
|