forked from len0rd/rockbox
plugins: make local functions static for a subset of plugins
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30564 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e03faf835d
commit
d91e67acc9
14 changed files with 124 additions and 122 deletions
|
@ -330,7 +330,7 @@ static void ticks_to_string(int ticks,int lap,int buflen, char * buf)
|
|||
/*
|
||||
* Load saved stopwatch state, if exists.
|
||||
*/
|
||||
void load_stopwatch(void)
|
||||
static void load_stopwatch(void)
|
||||
{
|
||||
int fd;
|
||||
|
||||
|
@ -370,7 +370,7 @@ void load_stopwatch(void)
|
|||
/*
|
||||
* Save stopwatch state.
|
||||
*/
|
||||
void save_stopwatch(void)
|
||||
static void save_stopwatch(void)
|
||||
{
|
||||
int fd;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue