Skip to content

Commit dc3486a

Browse files
committed
Avoid unused top binding warnings
1 parent 0b5dc7e commit dc3486a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FFI.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module FFI
44
( getTime
5+
, sin
56
, add
67
, getPi
78
, getNegPi
@@ -41,4 +42,3 @@ getNegPi = realToFrac c_get_neg_pi
4142
foreign import ccall "neg_add" c_neg_add :: CInt -> CInt -> CInt
4243
negAdd :: Int -> Int -> Int
4344
negAdd x y = fromIntegral $ c_neg_add (toEnum x) (toEnum y)
44-

0 commit comments

Comments
 (0)