summaryrefslogtreecommitdiffstatshomepage
path: root/py/runtime.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-02-05 21:27:05 +0000
committerDamien George <damien.p.george@gmail.com>2014-02-05 21:27:05 +0000
commitcdcb4906d41f42789f6610047e8ae6aa79a61e47 (patch)
tree099453009838e4ba11de4a32cda89f076dc20256 /py/runtime.h
parentb8ec17c2d16407dd186d1f8f76c1e7c420bb7729 (diff)
parent911089606376e60bd9451a85eb9558a23cde9039 (diff)
downloadmicropython-cdcb4906d41f42789f6610047e8ae6aa79a61e47.tar.gz
micropython-cdcb4906d41f42789f6610047e8ae6aa79a61e47.zip
Merge pull request #262 from pfalcon/sys-path
Implement sys.path support
Diffstat (limited to 'py/runtime.h')
-rw-r--r--py/runtime.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/runtime.h b/py/runtime.h
index aafe1a06a3..20595c6a58 100644
--- a/py/runtime.h
+++ b/py/runtime.h
@@ -46,3 +46,4 @@ void rt_locals_set(struct _mp_map_t *m);
struct _mp_map_t *rt_globals_get(void);
void rt_globals_set(struct _mp_map_t *m);
struct _mp_map_t *rt_loaded_modules_get(void);
+extern mp_obj_t sys_path;