summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-04-09 15:31:53 +0000
committerDamien George <damien.p.george@gmail.com>2015-04-09 15:31:53 +0000
commit91bc32dc169560d0faf7cba177c3c9cd6b1f88b7 (patch)
tree1b2199fba49923ed1c0dbc427395069c69623f56
parent4dea922610c8ea6af285cd49b0a531d4941d820f (diff)
downloadmicropython-91bc32dc169560d0faf7cba177c3c9cd6b1f88b7.tar.gz
micropython-91bc32dc169560d0faf7cba177c3c9cd6b1f88b7.zip
py: Provide typedefs for function types instead of writing them inline.
-rw-r--r--py/compile.c4
-rw-r--r--py/emitbc.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/py/compile.c b/py/compile.c
index faeb7b227e..aa02ed22d4 100644
--- a/py/compile.c
+++ b/py/compile.c
@@ -400,7 +400,9 @@ STATIC scope_t *scope_new_and_link(compiler_t *comp, scope_kind_t kind, mp_parse
return scope;
}
-STATIC void apply_to_single_or_list(compiler_t *comp, mp_parse_node_t pn, pn_kind_t pn_list_kind, void (*f)(compiler_t*, mp_parse_node_t)) {
+typedef void (*apply_list_fun_t)(compiler_t *comp, mp_parse_node_t pn);
+
+STATIC void apply_to_single_or_list(compiler_t *comp, mp_parse_node_t pn, pn_kind_t pn_list_kind, apply_list_fun_t f) {
if (MP_PARSE_NODE_IS_STRUCT_KIND(pn, pn_list_kind)) {
mp_parse_node_struct_t *pns = (mp_parse_node_struct_t*)pn;
int num_nodes = MP_PARSE_NODE_STRUCT_NUM_NODES(pns);
diff --git a/py/emitbc.c b/py/emitbc.c
index 70db060057..32d45db388 100644
--- a/py/emitbc.c
+++ b/py/emitbc.c
@@ -77,7 +77,9 @@ void emit_bc_free(emit_t *emit) {
m_del_obj(emit_t, emit);
}
-STATIC void emit_write_uint(emit_t *emit, byte*(*allocator)(emit_t*, int), mp_uint_t val) {
+typedef byte *(*emit_allocator_t)(emit_t *emit, int nbytes);
+
+STATIC void emit_write_uint(emit_t *emit, emit_allocator_t allocator, mp_uint_t val) {
// We store each 7 bits in a separate byte, and that's how many bytes needed
byte buf[BYTES_FOR_INT];
byte *p = buf + sizeof(buf);