diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-03 14:53:36 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-03 14:53:36 +0200 |
commit | 65405247a049491a29f71a3b4019ed2ef9724317 (patch) | |
tree | 1eeb269ec1ec0019544355911f537ef2a0954876 /extmod/vfs_fat_lexer.c | |
parent | 3aa0f2eed35636fdc49a5ac053727ad2379232cd (diff) | |
download | micropython-65405247a049491a29f71a3b4019ed2ef9724317.tar.gz micropython-65405247a049491a29f71a3b4019ed2ef9724317.zip |
extmod/vfs_fat_lexer: Add func prototype for pedantic warnings.
Diffstat (limited to 'extmod/vfs_fat_lexer.c')
-rw-r--r-- | extmod/vfs_fat_lexer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extmod/vfs_fat_lexer.c b/extmod/vfs_fat_lexer.c index f83bfb3fbf..91acdb830d 100644 --- a/extmod/vfs_fat_lexer.c +++ b/extmod/vfs_fat_lexer.c @@ -61,6 +61,8 @@ STATIC void file_buf_close(mp_lexer_file_buf_t *fb) { m_del_obj(mp_lexer_file_buf_t, fb); } +mp_lexer_t *fat_vfs_lexer_new_from_file(const char *filename); + mp_lexer_t *fat_vfs_lexer_new_from_file(const char *filename) { mp_lexer_file_buf_t *fb = m_new_obj_maybe(mp_lexer_file_buf_t); if (fb == NULL) { |