diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-01 21:06:20 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-01 21:06:20 +0000 |
commit | 2cf6dfa280a8149941aafc852fbaae8bdfc4999e (patch) | |
tree | 9e9ea6ed5591f424359ce25cd0f56d8932380a0e /stmhal/extint.c | |
parent | b36be5ff5172c97a8f37228c1ec163df466fd588 (diff) | |
download | micropython-2cf6dfa280a8149941aafc852fbaae8bdfc4999e.tar.gz micropython-2cf6dfa280a8149941aafc852fbaae8bdfc4999e.zip |
stmhal: Prefix includes with py/; remove need for -I../py.
Diffstat (limited to 'stmhal/extint.c')
-rw-r--r-- | stmhal/extint.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/stmhal/extint.c b/stmhal/extint.c index a67af65b05..78bc17be0f 100644 --- a/stmhal/extint.c +++ b/stmhal/extint.c @@ -30,15 +30,10 @@ #include <stm32f4xx_hal.h> -#include "mpconfig.h" -#include "nlr.h" -#include "misc.h" -#include "qstr.h" -#include "gc.h" -#include "obj.h" -#include "runtime.h" -#include "pfenv.h" - +#include "py/nlr.h" +#include "py/runtime.h" +#include "py/gc.h" +#include "py/pfenv.h" #include "pin.h" #include "extint.h" |