about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/library-with-sysdeps/Lib.hs
blob: 771dd7faf10f7a14014a76f15953b32115a912eb (plain) (blame)
1
2
3
4
5
6
7
8
module Lib (crc) where

import Foreign.Ptr
import Foreign.C.Types

foreign import ccall crc32 :: CLong -> Ptr () -> CInt -> IO ()

crc = crc32 0 nullPtr 0