diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-01 20:35:21 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-01 20:35:21 +0000 |
commit | 3765ea419a7b68d3349a3c90089cfec9063db94b (patch) | |
tree | b523a7e194a95a64898659dd8405e66684b75ed0 /extmod/modure.c | |
parent | 51dfcb4bb7613ed164952712d9a5235a7b833cde (diff) | |
download | micropython-3765ea419a7b68d3349a3c90089cfec9063db94b.tar.gz micropython-3765ea419a7b68d3349a3c90089cfec9063db94b.zip |
extmod: Prefix py/ for includes from py core directory.
Diffstat (limited to 'extmod/modure.c')
-rw-r--r-- | extmod/modure.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/extmod/modure.c b/extmod/modure.c index b9f2624563..fa7ae67740 100644 --- a/extmod/modure.c +++ b/extmod/modure.c @@ -28,13 +28,9 @@ #include <assert.h> #include <string.h> -#include "mpconfig.h" -#include "nlr.h" -#include "misc.h" -#include "qstr.h" -#include "obj.h" -#include "runtime.h" -#include "binary.h" +#include "py/nlr.h" +#include "py/runtime.h" +#include "py/binary.h" #if MICROPY_PY_URE |