1
0
Fork 0
forked from len0rd/rockbox

plugins: another round of making local functions static

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30758 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2011-10-15 20:38:08 +00:00
parent 2176fb38b6
commit fe67a87885
17 changed files with 171 additions and 168 deletions

View file

@ -83,7 +83,7 @@ static void wave_table_generate(void)
#ifdef HAVE_LCD_COLOR
/* Make a smooth colour cycle. */
void shades_generate(int time)
static void shades_generate(int time)
{
int i;
unsigned red, green, blue;
@ -129,7 +129,7 @@ static void shades_generate(void)
}
#endif
void cleanup(void)
static void cleanup(void)
{
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
if (boosted)
@ -150,7 +150,7 @@ void cleanup(void)
* algorithm.
*/
int main(void)
static int main(void)
{
plasma_frequency = 1;
int action, x, y;