1
0
Fork 0
forked from len0rd/rockbox

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

@ -33,7 +33,7 @@ static int int_btn = BUTTON_NONE;
* Generate a click sound from the player (not in headphones yet)
* TODO: integrate this with the "key click" option
*/
void button_click(void)
static void button_click(void)
{
GPO32_ENABLE |= 0x2000;
GPO32_VAL |= 0x2000;

View file

@ -39,7 +39,7 @@ static int repeat = 0;
* Generate a click sound from the player (not in headphones yet)
* TODO: integrate this with the "key click" option
*/
void button_click(void)
static void button_click(void)
{
GPO32_ENABLE |= 0x2000;
GPO32_VAL |= 0x2000;