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 /esp8266/moduos.c | |
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 'esp8266/moduos.c')
-rw-r--r-- | esp8266/moduos.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/esp8266/moduos.c b/esp8266/moduos.c index e9c4c3e8cc..5f5aab1662 100644 --- a/esp8266/moduos.c +++ b/esp8266/moduos.c @@ -34,12 +34,11 @@ #include "py/runtime.h" #include "py/mperrno.h" #include "extmod/misc.h" +#include "extmod/vfs_fat.h" #include "genhdr/mpversion.h" #include "esp_mphal.h" #include "user_interface.h" -extern const mp_obj_type_t mp_fat_vfs_type; - STATIC const qstr os_uname_info_fields[] = { MP_QSTR_sysname, MP_QSTR_nodename, MP_QSTR_release, MP_QSTR_version, MP_QSTR_machine |