Un-ignore .bat files
[cabal.git] / cabal-testsuite / PackageTests / CMain / 10168 / src / Lib.hs
blobba1bcce7ab93fa724a0b71696ef22e4f9003e67a
1 module Lib ( myMax ) where
3 myMax :: Int -> Int -> Int
4 myMax x1 x2 = if x1 > x2 then x1 else x2
6 foreign export ccall myMax :: Int -> Int -> Int