diff options
author | Damien George <damien.p.george@gmail.com> | 2017-01-27 15:04:17 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-01-27 15:04:17 +1100 |
commit | 32a1138b9f66b76808906064a76c5f9533cc825c (patch) | |
tree | 1a3cb1ffc833a4453393d7209538edfd3dec668f /unix | |
parent | 143fa0ffeb41f0fb0f3c84bfd43397d36d97cea5 (diff) | |
download | micropython-32a1138b9f66b76808906064a76c5f9533cc825c.tar.gz micropython-32a1138b9f66b76808906064a76c5f9533cc825c.zip |
extmod: Rename vfs_fat_file.h to vfs_fat.h.
And move declaration of mp_fat_vfs_type to this file.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/modos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/modos.c b/unix/modos.c index 72f5d872e4..c35b246dd0 100644 --- a/unix/modos.c +++ b/unix/modos.c @@ -39,6 +39,7 @@ #include "py/objtuple.h" #include "py/mphal.h" #include "extmod/misc.h" +#include "extmod/vfs_fat.h" // Can't include this, as FATFS structure definition is required, // and FatFs header defining it conflicts with POSIX. @@ -46,7 +47,6 @@ MP_DECLARE_CONST_FUN_OBJ_KW(fsuser_mount_obj); MP_DECLARE_CONST_FUN_OBJ_1(fsuser_umount_obj); MP_DECLARE_CONST_FUN_OBJ_KW(fsuser_mkfs_obj); -extern const mp_obj_type_t mp_fat_vfs_type; #ifdef __ANDROID__ #define USE_STATFS 1 |