summaryrefslogtreecommitdiff
path: root/py/objint.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-27 23:16:20 +0000
committerDamien George <damien.p.george@gmail.com>2014-01-27 23:16:20 +0000
commitc7aa9fcae571a442a50c90409396788dd0b28c24 (patch)
tree8959e333f1d9183fbfb781ed974a17f1e27d71c7 /py/objint.h
parent4e8dc8c41b6f68269571fe218f7292fc86cf3ddb (diff)
parent9b00dad7bb0125a3459ca4f9c939c7510bd2f77f (diff)
Merge branch 'master' of github.com:micropython/micropython
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);