From 65405247a049491a29f71a3b4019ed2ef9724317 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 3 Mar 2016 14:53:36 +0200 Subject: [PATCH] extmod/vfs_fat_lexer: Add func prototype for pedantic warnings. --- extmod/vfs_fat_lexer.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extmod/vfs_fat_lexer.c b/extmod/vfs_fat_lexer.c index f83bfb3fb..91acdb830 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) {