diff options
author | Ian Lynagh <igloo@earth.li> | 2009-06-15 20:17:32 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-06-15 20:17:32 +0000 |
commit | 819ff42e86b4cdd4c5ef7ad63553108bd379967c (patch) | |
tree | 5048041b013b39764a4258b693b216d35e188591 /libraries/integer-gmp/cbits/cbits.c | |
parent | 060251c24ad160264ae8553efecbb8bed2f06360 (diff) | |
download | haskell-819ff42e86b4cdd4c5ef7ad63553108bd379967c.tar.gz |
Move the int64 conversion functions here, from ghc-prim
Diffstat (limited to 'libraries/integer-gmp/cbits/cbits.c')
-rw-r--r-- | libraries/integer-gmp/cbits/cbits.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libraries/integer-gmp/cbits/cbits.c b/libraries/integer-gmp/cbits/cbits.c index 4b9fd01480..3d53c6ba62 100644 --- a/libraries/integer-gmp/cbits/cbits.c +++ b/libraries/integer-gmp/cbits/cbits.c @@ -1,5 +1,5 @@ -/* We combine the two C files here. +/* We combine the C files here. * * There is actually a good reason for this, really! * The alloc file contains a __attribute__((constructor)) function. We must @@ -11,3 +11,4 @@ #include "alloc.c" #include "float.c" +#include "longlong.c" |