c-expr-runtime-0.1.0.0: lib/C/Expr/Posix64.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.Posix64
( module C.Operator.Classes
, module C.Expr.Posix64
) where
import C.Type (OS (..), Platform (..), WordWidth (..))
import C.Operator.Classes
import C.Operator.GenInstances (cExprInstances)
--------------------------------------------------------------------------------
$( cExprInstances
( Platform
{ platformWordWidth = WordWidth64
, platformOS = Posix
}
) )