From bff2771da1c5441708124bb59022884f33a4e136 Mon Sep 17 00:00:00 2001 From: Bob Fanger Date: Sat, 21 Sep 2019 15:29:33 +0200 Subject: [PATCH] extmod/vfs_posix: Include stdio.h for declaration of function 'rename'. --- extmod/vfs_posix.c | 1 + 1 file changed, 1 insertion(+) diff --git a/extmod/vfs_posix.c b/extmod/vfs_posix.c index 4ef761956..d943e0c80 100644 --- a/extmod/vfs_posix.c +++ b/extmod/vfs_posix.c @@ -31,6 +31,7 @@ #if MICROPY_VFS_POSIX +#include #include #include #include