Make more local functions static.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31395 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Boris Gjenero 2011-12-21 17:36:18 +00:00
parent 2800c55a6a
commit 14c2e677fd
9 changed files with 17 additions and 11 deletions

View file

@ -129,7 +129,7 @@ void screen_helper_remote_setfont(int font)
lcd_remote_setfont(font);
}
int screen_helper_remote_getuifont(void)
static int screen_helper_remote_getuifont(void)
{
#ifdef HAVE_LCD_BITMAP
return global_status.font_id[SCREEN_REMOTE];
@ -138,7 +138,7 @@ int screen_helper_remote_getuifont(void)
#endif
}
void screen_helper_remote_setuifont(int font)
static void screen_helper_remote_setuifont(int font)
{
#ifdef HAVE_LCD_BITMAP
global_status.font_id[SCREEN_REMOTE] = font;