diff options
Diffstat (limited to 'py/smallint.c')
-rw-r--r-- | py/smallint.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/py/smallint.c b/py/smallint.c index 3a06c40a9f..4c42ee0cc9 100644 --- a/py/smallint.c +++ b/py/smallint.c @@ -24,11 +24,7 @@ * THE SOFTWARE. */ -#include "mpconfig.h" -#include "misc.h" -#include "qstr.h" -#include "obj.h" -#include "smallint.h" +#include "py/smallint.h" bool mp_small_int_mul_overflow(mp_int_t x, mp_int_t y) { // Check for multiply overflow; see CERT INT32-C |