diff options
Diffstat (limited to 'py/objstrunicode.c')
-rw-r--r-- | py/objstrunicode.c | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/py/objstrunicode.c b/py/objstrunicode.c index 2c8d02491f..fd3678722c 100644 --- a/py/objstrunicode.c +++ b/py/objstrunicode.c @@ -25,20 +25,15 @@ * THE SOFTWARE. */ -#include <stdbool.h> #include <string.h> #include <assert.h> -#include "mpconfig.h" -#include "nlr.h" -#include "misc.h" -#include "qstr.h" -#include "obj.h" -#include "runtime0.h" -#include "runtime.h" -#include "pfenv.h" -#include "objstr.h" -#include "objlist.h" +#include "py/nlr.h" +#include "py/objstr.h" +#include "py/objlist.h" +#include "py/runtime0.h" +#include "py/runtime.h" +#include "py/pfenv.h" #if MICROPY_PY_BUILTINS_STR_UNICODE |