commit | 0b23348610e7139f225d4bf5230f2604bd5db146 | [log] [tgz] |
---|---|---|
author | Franklin Wei <franklin@rockbox.org> | Mon Jul 29 20:53:59 2019 -0400 |
committer | Franklin Wei <franklin@rockbox.org> | Tue Jul 30 03:43:57 2019 +0200 |
tree | f2f9ffb0dbfdbdee8dee8992c89718cdbfe96e66 | |
parent | c31700f92298f00d71a47ed353cb5c9c95a197e1 [diff] |
sdl: forward-declare fscanf_wrapper Silences a few warnings (if you enable them). Change-Id: Id9a9f4c688742c13ee3eb0777c40b4d4edcda224
diff --git a/apps/plugins/sdl/include/SDL_config_rockbox.h b/apps/plugins/sdl/include/SDL_config_rockbox.h index 2b7f9a6..2cefc24 100644 --- a/apps/plugins/sdl/include/SDL_config_rockbox.h +++ b/apps/plugins/sdl/include/SDL_config_rockbox.h
@@ -203,6 +203,7 @@ 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));