summaryrefslogtreecommitdiffstatshomepage
path: root/py/objint_mpz.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/objint_mpz.c')
-rw-r--r--py/objint_mpz.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/py/objint_mpz.c b/py/objint_mpz.c
index 1dc1def33d..554ec96579 100644
--- a/py/objint_mpz.c
+++ b/py/objint_mpz.c
@@ -24,22 +24,16 @@
* THE SOFTWARE.
*/
-#include <stdint.h>
#include <string.h>
#include <stdio.h>
#include <assert.h>
-#include "mpconfig.h"
-#include "nlr.h"
-#include "misc.h"
-#include "qstr.h"
-#include "parsenumbase.h"
-#include "obj.h"
-#include "smallint.h"
-#include "mpz.h"
-#include "objint.h"
-#include "runtime0.h"
-#include "runtime.h"
+#include "py/nlr.h"
+#include "py/parsenumbase.h"
+#include "py/smallint.h"
+#include "py/objint.h"
+#include "py/runtime0.h"
+#include "py/runtime.h"
#if MICROPY_PY_BUILTINS_FLOAT
#include <math.h>