summaryrefslogtreecommitdiffstatshomepage
path: root/py/obj.h
diff options
context:
space:
mode:
authorian-v <ianv888@gmail.com>2014-01-06 13:51:53 -0800
committerian-v <ianv888@gmail.com>2014-01-06 13:51:53 -0800
commit5fd8fd2c16076f683b629b513e8865e461d4c9a8 (patch)
tree9f10aab33ca9b4325cbe84c41b1e4d614d202021 /py/obj.h
parent7a16fadbf843ca5d49fb20b5f5785ffccfd9019f (diff)
downloadmicropython-5fd8fd2c16076f683b629b513e8865e461d4c9a8.tar.gz
micropython-5fd8fd2c16076f683b629b513e8865e461d4c9a8.zip
Revert MP_BOOL, etc. and use <stdbool.h> instead
Diffstat (limited to 'py/obj.h')
-rw-r--r--py/obj.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/py/obj.h b/py/obj.h
index b8ddb4ea87..351310afa8 100644
--- a/py/obj.h
+++ b/py/obj.h
@@ -126,7 +126,7 @@ struct _mp_map_t;
// General API for objects
mp_obj_t mp_obj_new_none(void);
-mp_obj_t mp_obj_new_bool(MP_BOOL value);
+mp_obj_t mp_obj_new_bool(bool value);
mp_obj_t mp_obj_new_cell(mp_obj_t obj);
mp_obj_t mp_obj_new_int(machine_int_t value);
mp_obj_t mp_obj_new_str(qstr qstr);
@@ -162,10 +162,10 @@ const char *mp_obj_get_type_str(mp_obj_t o_in);
void mp_obj_print_helper(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t o_in);
void mp_obj_print(mp_obj_t o);
-MP_BOOL mp_obj_is_callable(mp_obj_t o_in);
+bool mp_obj_is_callable(mp_obj_t o_in);
machine_int_t mp_obj_hash(mp_obj_t o_in);
-MP_BOOL mp_obj_equal(mp_obj_t o1, mp_obj_t o2);
-MP_BOOL mp_obj_less(mp_obj_t o1, mp_obj_t o2);
+bool mp_obj_equal(mp_obj_t o1, mp_obj_t o2);
+bool mp_obj_less(mp_obj_t o1, mp_obj_t o2);
machine_int_t mp_obj_get_int(mp_obj_t arg);
#if MICROPY_ENABLE_FLOAT