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/printf.c | |
| parent | b36be5ff5172c97a8f37228c1ec163df466fd588 (diff) | |
stmhal: Prefix includes with py/; remove need for -I../py.
Diffstat (limited to 'stmhal/printf.c')
| -rw-r--r-- | stmhal/printf.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/stmhal/printf.c b/stmhal/printf.c index ca9b279cd..a239e898c 100644 --- a/stmhal/printf.c +++ b/stmhal/printf.c @@ -28,15 +28,12 @@ #include <string.h> #include <stdarg.h> -#include "mpconfig.h" -#include "misc.h" -#include "qstr.h" -#include "obj.h" -#include "pfenv.h" +#include "py/obj.h" +#include "py/pfenv.h" #include "pybstdio.h" #if MICROPY_PY_BUILTINS_FLOAT -#include "formatfloat.h" +#include "py/formatfloat.h" #endif int pfenv_vprintf(const pfenv_t *pfenv, const char *fmt, va_list args); |
