summaryrefslogtreecommitdiff
path: root/apps/plugins/stopwatch.c
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2011-09-17 17:20:27 +0000
committerBertrik Sikken <bertrik@sikken.nl>2011-09-17 17:20:27 +0000
commitd91e67acc97263504a7338856b055d565e14c99a (patch)
tree47f4e8f80c99b7c049afeeb4ee926ce1b2ff24f8 /apps/plugins/stopwatch.c
parente03faf835dd7b879f589e3dc080991bab86dfae7 (diff)
downloadrockbox-d91e67acc97263504a7338856b055d565e14c99a.tar.gz
rockbox-d91e67acc97263504a7338856b055d565e14c99a.zip
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
Diffstat (limited to 'apps/plugins/stopwatch.c')
-rw-r--r--apps/plugins/stopwatch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/stopwatch.c b/apps/plugins/stopwatch.c
index f70d26bc56..8e3cf8a221 100644
--- a/apps/plugins/stopwatch.c
+++ b/apps/plugins/stopwatch.c
@@ -330,7 +330,7 @@ static void ticks_to_string(int ticks,int lap,int buflen, char * buf)
330/* 330/*
331 * Load saved stopwatch state, if exists. 331 * Load saved stopwatch state, if exists.
332 */ 332 */
333void load_stopwatch(void) 333static void load_stopwatch(void)
334{ 334{
335 int fd; 335 int fd;
336 336
@@ -370,7 +370,7 @@ void load_stopwatch(void)
370/* 370/*
371 * Save stopwatch state. 371 * Save stopwatch state.
372 */ 372 */
373void save_stopwatch(void) 373static void save_stopwatch(void)
374{ 374{
375 int fd; 375 int fd;
376 376