aboutsummaryrefslogtreecommitdiff
path: root/include/hex_conversion.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/hex_conversion.h')
-rw-r--r--include/hex_conversion.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hex_conversion.h b/include/hex_conversion.h
index 483cf26..ddeb131 100644
--- a/include/hex_conversion.h
+++ b/include/hex_conversion.h
@@ -12,7 +12,7 @@
#include <ctype.h>
#ifdef DEBUGBUILD
-#include "output.h"
+#include "trace_macros.h"
#endif
#define ishex_macro(c) ((c>='0' && c <= '9') || (c>='A' && c <= 'F') || (c>='a' && c <= 'f'))