diff options
| author | Bob Fanger <bfanger@gmail.com> | 2019-09-21 15:29:33 +0200 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2019-09-23 15:14:42 +1000 |
| commit | bff2771da1c5441708124bb59022884f33a4e136 (patch) | |
| tree | ad24345ecc354527304e8d18775b1e912ce67fae /extmod/vfs_posix.c | |
| parent | 6f7e774d12a1725e05ed8644ebe1712663d93a82 (diff) | |
extmod/vfs_posix: Include stdio.h for declaration of function 'rename'.
Diffstat (limited to 'extmod/vfs_posix.c')
| -rw-r--r-- | extmod/vfs_posix.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 <stdio.h> #include <string.h> #include <sys/stat.h> #include <dirent.h> |
