summaryrefslogtreecommitdiff
path: root/src/u8c/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/u8c/debug.c')
-rw-r--r--src/u8c/debug.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/u8c/debug.c b/src/u8c/debug.c
index eb926eb..faa668e 100644
--- a/src/u8c/debug.c
+++ b/src/u8c/debug.c
@@ -13,11 +13,12 @@
If not, see <https://www.gnu.org/licenses/>.
*/
+# include <stdbool.h>
# include <stdint.h>
-# include <u8c/debug.h>
-uint_least8_t const u8c_debug =
+# include <u8c/dbg.h>
+bool const u8c_dbg =
# if defined(NDEBUG)
- UINT8_C(0x0);
+ false;
# else
- UINT8_C(0x1);
+ true;
# endif