aboutsummaryrefslogtreecommitdiff
path: root/py/compile.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-03 14:22:03 +0000
committerDamien George <damien.p.george@gmail.com>2014-01-03 14:22:03 +0000
commit1fb031744f5584d1bd0c88d28fbe7e261832c7a8 (patch)
tree5489409a916abae056054524be162dc0d10ab80b /py/compile.h
parent14f945c2cab2b44fcb75675eb1ec8eea8774660b (diff)
Change mp_compile so that it returns a function object for the module.
Diffstat (limited to 'py/compile.h')
-rw-r--r--py/compile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/compile.h b/py/compile.h
index e283442bb..770c2524d 100644
--- a/py/compile.h
+++ b/py/compile.h
@@ -1 +1 @@
-bool mp_compile(mp_parse_node_t pn, bool is_repl);
+mp_obj_t mp_compile(mp_parse_node_t pn, bool is_repl);