summaryrefslogtreecommitdiff
path: root/py/runtime.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-11 01:41:11 -0800
committerDamien George <damien.p.george@gmail.com>2014-01-11 01:41:11 -0800
commit683466e55f2221cbd6b05106732c885bd324bc21 (patch)
tree714b75f2779b79b826d745c13f725835001f787f /py/runtime.h
parentad97f2a49ea723cf21f828c99e0075ff1fd0680a (diff)
parentb8698fca75018b5cacaf9b2fdfd821f86b8acaf4 (diff)
Merge pull request #138 from chipaca/unify_bops
Merge RT_COMPARE_OPs with RT_BINARY_OPs.
Diffstat (limited to 'py/runtime.h')
-rw-r--r--py/runtime.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/py/runtime.h b/py/runtime.h
index 96f1671f6..ac53e1411 100644
--- a/py/runtime.h
+++ b/py/runtime.h
@@ -11,7 +11,6 @@ void rt_store_name(qstr qstr, mp_obj_t obj);
void rt_store_global(qstr qstr, mp_obj_t obj);
mp_obj_t rt_unary_op(int op, mp_obj_t arg);
mp_obj_t rt_binary_op(int op, mp_obj_t lhs, mp_obj_t rhs);
-mp_obj_t rt_compare_op(int op, mp_obj_t lhs, mp_obj_t rhs);
mp_obj_t rt_make_function_from_id(int unique_code_id);
mp_obj_t rt_make_function_0(mp_fun_0_t f);
mp_obj_t rt_make_function_1(mp_fun_1_t f);