diff options
author | Damien George <damien.p.george@gmail.com> | 2016-11-16 11:55:41 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-11-16 16:14:14 +1100 |
commit | 6810f2c134f9329e9dc18f4e0d3a1936ca6d8011 (patch) | |
tree | f8b63a820b0659bd8083cb851fa5209e8f92c102 /py/builtinimport.c | |
parent | 64db4080cec88c7b3937229a653c65a631732379 (diff) | |
download | micropython-6810f2c134f9329e9dc18f4e0d3a1936ca6d8011.tar.gz micropython-6810f2c134f9329e9dc18f4e0d3a1936ca6d8011.zip |
py: Factor persistent code load/save funcs into persistentcode.[ch].
Diffstat (limited to 'py/builtinimport.c')
-rw-r--r-- | py/builtinimport.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/builtinimport.c b/py/builtinimport.c index e72eaf4724..e197dc7832 100644 --- a/py/builtinimport.c +++ b/py/builtinimport.c @@ -32,6 +32,7 @@ #include "py/nlr.h" #include "py/compile.h" #include "py/objmodule.h" +#include "py/persistentcode.h" #include "py/runtime.h" #include "py/builtin.h" #include "py/frozenmod.h" |