aboutsummaryrefslogtreecommitdiff
path: root/examples/embedding
diff options
context:
space:
mode:
authorDamien George2016-08-15 11:02:59 +1000
committerDamien George2016-08-15 11:02:59 +1000
commit675d1c9c600224820f49f912e4ff7d6cf2f97711 (patch)
tree6ee88932cfac9ba07782ad19ce173c7d829d5c42 /examples/embedding
parent41fceae559ff2272a88441dbf531232f173ccbd6 (diff)
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 'examples/embedding')
-rw-r--r--examples/embedding/mpconfigport_minimal.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/embedding/mpconfigport_minimal.h b/examples/embedding/mpconfigport_minimal.h
index 9f080ab0e..90011b3f8 100644
--- a/examples/embedding/mpconfigport_minimal.h
+++ b/examples/embedding/mpconfigport_minimal.h
@@ -127,9 +127,6 @@ typedef long long mp_off_t;
typedef long mp_off_t;
#endif
-typedef void *machine_ptr_t; // must be of pointer size
-typedef const void *machine_const_ptr_t; // must be of pointer size
-
// We need to provide a declaration/definition of alloca()
#ifdef __FreeBSD__
#include <stdlib.h>