diff options
Diffstat (limited to 'teensy/mpconfigport.h')
-rw-r--r-- | teensy/mpconfigport.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/teensy/mpconfigport.h b/teensy/mpconfigport.h index ff0a31f272..108b230dfd 100644 --- a/teensy/mpconfigport.h +++ b/teensy/mpconfigport.h @@ -46,8 +46,8 @@ extern const struct _mp_obj_module_t time_module; #define UINT_FMT "%u" #define INT_FMT "%d" -typedef int32_t machine_int_t; // must be pointer size -typedef unsigned int machine_uint_t; // must be pointer size +typedef int32_t mp_int_t; // must be pointer size +typedef unsigned int mp_uint_t; // must be pointer size typedef void *machine_ptr_t; // must be of pointer size typedef const void *machine_const_ptr_t; // must be of pointer size |