{-# LANGUAGE ForeignFunctionInterface #-}

module Main where

import Foreign.C.Types

foreign export ccall "init_module" init_module :: IO Int
foreign export ccall "cleanup_module" cleanup_module :: IO ()

init_module :: IO Int
init_module = return 0 -- success!

-- cleanup_module :: IO ()
cleanup_module = return ()

main :: IO ()
main = return ()
