diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-27 09:05:50 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-27 12:25:23 +0200 |
commit | 9b00dad7bb0125a3459ca4f9c939c7510bd2f77f (patch) | |
tree | bef9918585abfaab1b9f777c2f2f03a331df3719 /py/objint.h | |
parent | ddf1aa9223a2786c64df07ea686ecfe6ee83d1b2 (diff) | |
download | micropython-9b00dad7bb0125a3459ca4f9c939c7510bd2f77f.tar.gz micropython-9b00dad7bb0125a3459ca4f9c939c7510bd2f77f.zip |
long int: Implement more operations.
Diffstat (limited to 'py/objint.h')
-rw-r--r-- | py/objint.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/objint.h b/py/objint.h index 7d43971ec3..6662be1ef3 100644 --- a/py/objint.h +++ b/py/objint.h @@ -6,4 +6,5 @@ typedef struct _mp_obj_int_t { } mp_obj_int_t; void int_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind); +mp_obj_t int_unary_op(int op, mp_obj_t o_in); mp_obj_t int_binary_op(int op, mp_obj_t lhs_in, mp_obj_t rhs_in); |