commit | 438c88dd2fbf8250883882188cca513ce534271f | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Sat Feb 22 19:25:23 2014 +0000 |
committer | Damien George <damien.p.george@gmail.com> | Sat Feb 22 19:25:23 2014 +0000 |
tree | 601f43c00efc8ad90d04891ddc61cbb6351a6aeb | |
parent | 20773971186151b53426bd607908546598036a16 [diff] [blame] |
Add arbitrary precision integer support. Some functionality is still missing (eg and, or, bit shift), and some things are buggy (eg subtract).
diff --git a/py/objint_longlong.c b/py/objint_longlong.c index d07f72a..eca2951 100644 --- a/py/objint_longlong.c +++ b/py/objint_longlong.c
@@ -8,6 +8,7 @@ #include "mpconfig.h" #include "qstr.h" #include "obj.h" +#include "mpz.h" #include "objint.h" #include "runtime0.h"