diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2008-09-10 20:14:22 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2008-09-10 20:14:22 +0000 |
| commit | 37a384c541efe67a98f9db1b80a181f9cef32023 (patch) | |
| tree | a72b3c521def1deadcec8123da0dfd69c809a7bb /apps/debug_menu.c | |
| parent | 1cf8331d7a4e5fc7b0548688ff5d018224cc4ed1 (diff) | |
| download | rockbox-37a384c541efe67a98f9db1b80a181f9cef32023.zip rockbox-37a384c541efe67a98f9db1b80a181f9cef32023.tar.gz rockbox-37a384c541efe67a98f9db1b80a181f9cef32023.tar.bz2 rockbox-37a384c541efe67a98f9db1b80a181f9cef32023.tar.xz | |
Minor missing #include and static function fixes for mrobe
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18487 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
| -rw-r--r-- | apps/debug_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 72379f4..4d9be69 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -1464,7 +1464,7 @@ static bool dbg_cpufreq(void) #if defined(HAVE_TSC2100) && !defined(SIMULATOR) #include "tsc2100.h" -char *itob(int n, int len) +static char *itob(int n, int len) { static char binary[64]; int i,j; @@ -1519,7 +1519,7 @@ static int tsc2100debug_action_callback(int action, struct gui_synclist *lists) } return action; } -bool tsc2100_debug(void) +static bool tsc2100_debug(void) { int page = 0; char title[32] = "tsc2100 registers - Page 0"; |