c-expr-runtime-0.1.0.0: lib/C/Expr/Posix32.hs
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE UndecidableInstances #-}
{-# OPTIONS_GHC -Wno-orphans -Wno-unused-matches #-}
-- Some options to make this module faster to compile
{-# OPTIONS_GHC -O0 -fmax-pmcheck-models=1 #-}
module C.Expr.Posix32
( module C.Operator.Classes
, module C.Expr.Posix32
) where
-- c-expr
import C.Type (OS (..), Platform (..), WordWidth (..))
import C.Operator.Classes
import C.Operator.GenInstances (cExprInstances)
--------------------------------------------------------------------------------
$( cExprInstances
( Platform
{ platformWordWidth = WordWidth32
, platformOS = Posix
}
) )