diff options
Diffstat (limited to 'py/objint_longlong.c')
-rw-r--r-- | py/objint_longlong.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objint_longlong.c b/py/objint_longlong.c index 83db6033f4..f637807905 100644 --- a/py/objint_longlong.c +++ b/py/objint_longlong.c @@ -13,7 +13,7 @@ #if MICROPY_LONGINT_IMPL == MICROPY_LONGINT_IMPL_LONGLONG -static mp_obj_t mp_obj_new_int_from_ll(long long val); +STATIC mp_obj_t mp_obj_new_int_from_ll(long long val); // Python3 no longer has "l" suffix for long ints. We allow to use it // for debugging purpose though. |