summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2012-01-04 05:21:44 +0000
committerRafaël Carré <rafael.carre@gmail.com>2012-01-04 05:21:44 +0000
commitec398340cd9ebe2dea4181665afa1fd7419bc2d3 (patch)
treed6564ffec7aa3187d3e42a4c5754d11da5678b98
parentaf7606776af9f19b82542a3575285b84da82a912 (diff)
downloadrockbox-ec398340cd9ebe2dea4181665afa1fd7419bc2d3.tar.gz
rockbox-ec398340cd9ebe2dea4181665afa1fd7419bc2d3.zip
dbg_ports() : move proto to system.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31557 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/debug_menu.h4
-rw-r--r--firmware/export/system.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/debug_menu.h b/apps/debug_menu.h
index 7926ffcd3b..664a1ba762 100644
--- a/apps/debug_menu.h
+++ b/apps/debug_menu.h
@@ -24,8 +24,4 @@
24bool debug_menu(void); 24bool debug_menu(void);
25bool run_debug_screen(char* screen); 25bool run_debug_screen(char* screen);
26 26
27#ifndef SIMULATOR
28extern bool dbg_ports(void);
29#endif
30
31#endif 27#endif
diff --git a/firmware/export/system.h b/firmware/export/system.h
index 1055c65b60..78fcd4caa9 100644
--- a/firmware/export/system.h
+++ b/firmware/export/system.h
@@ -386,4 +386,8 @@ static inline uint32_t swaw32_hw(uint32_t value)
386 * break strict aliasing rules' B.S. */ 386 * break strict aliasing rules' B.S. */
387#define PUN_PTR(type, p) ((type)(intptr_t)(p)) 387#define PUN_PTR(type, p) ((type)(intptr_t)(p))
388 388
389#ifndef SIMULATOR
390bool dbg_ports(void);
391#endif
392
389#endif /* __SYSTEM_H__ */ 393#endif /* __SYSTEM_H__ */