diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-22 19:25:23 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-22 19:25:23 +0000 |
commit | 438c88dd2fbf8250883882188cca513ce534271f (patch) | |
tree | 601f43c00efc8ad90d04891ddc61cbb6351a6aeb /py/objint.c | |
parent | 20773971186151b53426bd607908546598036a16 (diff) |
Add arbitrary precision integer support.
Some functionality is still missing (eg and, or, bit shift), and some
things are buggy (eg subtract).
Diffstat (limited to 'py/objint.c')
-rw-r--r-- | py/objint.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/objint.c b/py/objint.c index 0caaab649..490b4340b 100644 --- a/py/objint.c +++ b/py/objint.c @@ -9,6 +9,7 @@ #include "qstr.h" #include "obj.h" #include "parsenum.h" +#include "mpz.h" #include "objint.h" // This dispatcher function is expected to be independent of the implementation |