aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/haskell2010/ffi/s8-mixed-import-export.hs
{- ORACLE_TEST pass -}
{-# LANGUAGE ForeignFunctionInterface #-}
module FfiS8MixedImportExport where
foreign import ccall "atoi" c_atoi :: String -> IO Int
inc :: Int -> Int
inc n = n + 1
foreign export ccall "inc" inc :: Int -> Int