diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-02-14 17:16:35 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-02-14 20:38:35 +0200 |
commit | 8bc3516389cd148ebeaa58ceaf3d3f7fb13440d8 (patch) | |
tree | 11b747322a7d8c03d476914d57fd86725f886a12 /py/objint_longlong.c | |
parent | 70d7a83c74812a517ef0489877becb075d164630 (diff) |
ffi: Implement ffivar.get()/set() methods.
Done by introducing another factored out helper API in binary.c. This API
can be reused also by array and struct modules.
Diffstat (limited to 'py/objint_longlong.c')
-rw-r--r-- | py/objint_longlong.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/py/objint_longlong.c b/py/objint_longlong.c index f63780790..7412cc09c 100644 --- a/py/objint_longlong.c +++ b/py/objint_longlong.c @@ -13,8 +13,6 @@ #if MICROPY_LONGINT_IMPL == MICROPY_LONGINT_IMPL_LONGLONG -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. #ifdef DEBUG |