aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/debug.h
diff options
context:
space:
mode:
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);}