diff options
author | tmk <nobody@nowhere> | 2014-06-16 15:38:39 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2014-07-30 14:07:43 +0900 |
commit | 04fe78ee0a7fe9baed39f021799a3dbb24ebeb36 (patch) | |
tree | 047ab27ca15eedfcc5523ac0daf243611501ef5e /common/debug_config.h | |
parent | 867f115bee190515aa195dc3e58f1c381ea9695b (diff) |
Fix print and timer
Diffstat (limited to 'common/debug_config.h')
-rw-r--r-- | common/debug_config.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/common/debug_config.h b/common/debug_config.h index e00fd10336..0e67ee49f4 100644 --- a/common/debug_config.h +++ b/common/debug_config.h @@ -38,14 +38,15 @@ typedef union { } debug_config_t; debug_config_t debug_config; +#ifdef __cplusplus +} +#endif + + /* for backward compatibility */ #define debug_enable (debug_config.enable) #define debug_matrix (debug_config.matrix) #define debug_keyboard (debug_config.keyboard) #define debug_mouse (debug_config.mouse) -#ifdef __cplusplus -} -#endif - #endif |