diff options
Diffstat (limited to 'py/pfenv_printf.c')
-rw-r--r-- | py/pfenv_printf.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/py/pfenv_printf.c b/py/pfenv_printf.c index c0e826a5d2..39bf321ce3 100644 --- a/py/pfenv_printf.c +++ b/py/pfenv_printf.c @@ -25,19 +25,13 @@ */ #include <assert.h> -#include <stdio.h> -#include <stdint.h> #include <string.h> #include <stdarg.h> -#include "mpconfig.h" -#include "misc.h" -#include "qstr.h" -#include "obj.h" -#include "pfenv.h" +#include "py/pfenv.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) { |