diff options
author | Franklin Wei <franklin@rockbox.org> | 2019-07-29 20:53:59 -0400 |
---|---|---|
committer | Franklin Wei <franklin@rockbox.org> | 2019-07-30 03:43:57 +0200 |
commit | 0b23348610e7139f225d4bf5230f2604bd5db146 (patch) | |
tree | f2f9ffb0dbfdbdee8dee8992c89718cdbfe96e66 /apps/plugins | |
parent | c31700f92298f00d71a47ed353cb5c9c95a197e1 (diff) |
sdl: forward-declare fscanf_wrapper
Silences a few warnings (if you enable them).
Change-Id: Id9a9f4c688742c13ee3eb0777c40b4d4edcda224
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/sdl/include/SDL_config_rockbox.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugins/sdl/include/SDL_config_rockbox.h b/apps/plugins/sdl/include/SDL_config_rockbox.h index 2b7f9a6793..2cefc244e2 100644 --- a/apps/plugins/sdl/include/SDL_config_rockbox.h +++ b/apps/plugins/sdl/include/SDL_config_rockbox.h @@ -203,6 +203,7 @@ int mkdir_wrapepr(const char *path); int printf_wrapper(const char*, ...); int sprintf_wrapper(char*, const char*, ...); int vprintf(const char *fmt, va_list ap); +int fscanf_wrapper(FILE *f, const char *fmt, ...); void fatal(char *fmt, ...); void rb_exit(int rc); void rbsdl_atexit(void (*)(void)); |