diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2011-10-04 19:33:52 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2011-10-04 19:33:52 +0000 |
| commit | b01d8fa07174d7e3f8b4ad744275b4bc42e1ee8d (patch) | |
| tree | 021c27cb47746398bafbd76142c167bc44cc1e9e /apps/plugins/wavview.c | |
| parent | d1e5c74ca8bbe633dc335d788cf52a6e09ffe3b7 (diff) | |
| download | rockbox-b01d8fa07174d7e3f8b4ad744275b4bc42e1ee8d.zip rockbox-b01d8fa07174d7e3f8b4ad744275b4bc42e1ee8d.tar.gz rockbox-b01d8fa07174d7e3f8b4ad744275b4bc42e1ee8d.tar.bz2 rockbox-b01d8fa07174d7e3f8b4ad744275b4bc42e1ee8d.tar.xz | |
plugins: make local functions static for metronome, rockblox1d, wavview
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30711 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/wavview.c')
| -rw-r--r-- | apps/plugins/wavview.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/wavview.c b/apps/plugins/wavview.c index 25afa40..82e75e0 100644 --- a/apps/plugins/wavview.c +++ b/apps/plugins/wavview.c @@ -70,7 +70,7 @@ static uint32_t center = 0; static uint32_t ppp = 1; /* helper function copied from libwavpack bits.c */ -void little_endian_to_native (void *data, char *format) +static void little_endian_to_native (void *data, char *format) { unsigned char *cp = (unsigned char *) data; @@ -262,7 +262,7 @@ static int readwavpeaks(const char *filename) return 0; } -int displaypeaks(void) +static int displaypeaks(void) { register int x = 0; register int lymin = INT_MAX; @@ -334,7 +334,7 @@ int displaypeaks(void) return 0; } -void show_help(void) +static void show_help(void) { rb->lcd_clear_display(); rb->lcd_puts(0, 0, "WAVVIEW USAGE:"); |