From 4abff7500fb05430a2ce952a2430d4d0ba16047e Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 30 Aug 2014 14:59:21 +0100 Subject: py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h. Part of code cleanup, working towards resolving issue #50. --- py/stackctrl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'py/stackctrl.h') diff --git a/py/stackctrl.h b/py/stackctrl.h index 92de882bf..a57b846b7 100644 --- a/py/stackctrl.h +++ b/py/stackctrl.h @@ -25,11 +25,11 @@ */ void mp_stack_ctrl_init(); -uint mp_stack_usage(); +mp_uint_t mp_stack_usage(); #if MICROPY_STACK_CHECK -void mp_stack_set_limit(uint limit); +void mp_stack_set_limit(mp_uint_t limit); void mp_stack_check(); #define MP_STACK_CHECK() mp_stack_check() -- cgit v1.2.3