File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 490
490
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_NONE)
491
491
#endif
492
492
493
- // Support for calls to pow() with 3 integer arguments
494
- #ifndef MICROPY_PY_BUILTINS_POW3
495
- #define MICROPY_PY_BUILTINS_POW3 (0)
496
- #endif
497
-
498
493
#if MICROPY_LONGINT_IMPL == MICROPY_LONGINT_IMPL_LONGLONG
499
494
typedef long long mp_longint_impl_t ;
500
495
#endif
@@ -764,6 +759,11 @@ typedef double mp_float_t;
764
759
#define MICROPY_PY_BUILTINS_MIN_MAX (1)
765
760
#endif
766
761
762
+ // Support for calls to pow() with 3 integer arguments
763
+ #ifndef MICROPY_PY_BUILTINS_POW3
764
+ #define MICROPY_PY_BUILTINS_POW3 (0)
765
+ #endif
766
+
767
767
// Whether to provide the help function
768
768
#ifndef MICROPY_PY_BUILTINS_HELP
769
769
#define MICROPY_PY_BUILTINS_HELP (0)
You can’t perform that action at this time.
0 commit comments