aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/haskell2010/ffi/s8-export-stdcall-named.hs
{- ORACLE_TEST pass -}
{-# LANGUAGE ForeignFunctionInterface #-}
module FfiS8ExportStdcallNamed where
mulInt :: Int -> Int -> Int
mulInt a b = a * b
foreign export stdcall "mulInt" mulInt :: Int -> Int -> Int