Thu Dec 10 13:12:37 EST 2009 Duncan Coutts <du...@ha...>
* Remove leading space in FFI import names
Ignore-this: 742ed4c393cb770d5e0699030f3a4288
ghc-6.12 complains about this.
hunk ./tools/c2hs/gen/GenBind.hs 732
- "foreign import ccall " ++ safety ++ " \"" ++ header ++ " " ++ ident ++ [_$_]
+ "foreign import ccall " ++ safety ++ " \"" ++ entity ++
hunk ./tools/c2hs/gen/GenBind.hs 736
+ entity | null header = ident
+ | otherwise = header ++ " " ++ ident
|