summaryrefslogtreecommitdiff
path: root/extmod/vfs_posix.c
diff options
context:
space:
mode:
authorBob Fanger <bfanger@gmail.com>2019-09-21 15:29:33 +0200
committerDamien George <damien.p.george@gmail.com>2019-09-23 15:14:42 +1000
commitbff2771da1c5441708124bb59022884f33a4e136 (patch)
treead24345ecc354527304e8d18775b1e912ce67fae /extmod/vfs_posix.c
parent6f7e774d12a1725e05ed8644ebe1712663d93a82 (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.c1
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>