aboutsummaryrefslogtreecommitdiff
path: root/py/objint.h
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-01-27 09:05:50 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-01-27 12:25:23 +0200
commit9b00dad7bb0125a3459ca4f9c939c7510bd2f77f (patch)
treebef9918585abfaab1b9f777c2f2f03a331df3719 /py/objint.h
parentddf1aa9223a2786c64df07ea686ecfe6ee83d1b2 (diff)
long int: Implement more operations.
Diffstat (limited to 'py/objint.h')
-rw-r--r--py/objint.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/objint.h b/py/objint.h
index 7d43971ec..6662be1ef 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);