summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-08-15 11:02:59 +1000
committerDamien George <damien.p.george@gmail.com>2016-08-15 11:02:59 +1000
commit675d1c9c600224820f49f912e4ff7d6cf2f97711 (patch)
tree6ee88932cfac9ba07782ad19ce173c7d829d5c42 /esp8266
parent41fceae559ff2272a88441dbf531232f173ccbd6 (diff)
downloadmicropython-675d1c9c600224820f49f912e4ff7d6cf2f97711.tar.gz
micropython-675d1c9c600224820f49f912e4ff7d6cf2f97711.zip
ports: Remove typedef of machine_ptr_t, it's no longer needed.
This type was used only for the typedef of mp_obj_t, which is now defined by the object representation. So we can now remove this unused typedef, to simplify the mpconfigport.h file.
Diffstat (limited to 'esp8266')
-rw-r--r--esp8266/mpconfigport.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/esp8266/mpconfigport.h b/esp8266/mpconfigport.h
index 15410f00c5..63b9258a20 100644
--- a/esp8266/mpconfigport.h
+++ b/esp8266/mpconfigport.h
@@ -115,8 +115,6 @@
typedef int32_t mp_int_t; // must be pointer size
typedef uint32_t 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
typedef long mp_off_t;
typedef uint32_t sys_prot_t; // for modlwip
// ssize_t, off_t as required by POSIX-signatured functions in stream.h