aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/debug.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-03 16:13:59 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-03 16:13:59 +0000
commit36deb792c105ce4900870abe69da77393ce7a692 (patch)
tree6edea4eec9246743540f417c5d1a005595428705 /src/include/debug.h
parent528e9fea357b8b24069d99657230ba28968f5d0c (diff)
downloadChibiOS-36deb792c105ce4900870abe69da77393ce7a692.tar.gz
ChibiOS-36deb792c105ce4900870abe69da77393ce7a692.tar.bz2
ChibiOS-36deb792c105ce4900870abe69da77393ce7a692.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@714 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/include/debug.h')
-rw-r--r--src/include/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/debug.h b/src/include/debug.h
index 631882fad..71a2613eb 100644
--- a/src/include/debug.h
+++ b/src/include/debug.h
@@ -62,7 +62,7 @@ extern char *dbglastmsg;
#ifdef __cplusplus
extern "C" {
#endif
- void chDbgInit(void);
+ void debug_init(void);
void chDbgPanic(char *msg);
#ifdef __cplusplus
}
@@ -83,7 +83,7 @@ extern "C" {
#else /* !CH_USE_DEBUG */
-#define chDbgInit()
+#define debug_init()
#define chDbgPanic(msg) {}
#define chDbgAssert(c, m) {(void)(c);}