aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorThorsten Töpper <atsutane@freethoughts.de>2025-08-31 16:18:35 +0200
committerThorsten Töpper <atsutane@freethoughts.de>2025-08-31 16:18:35 +0200
commitc4e08ec3777b78b6f788eec6737524cc5e856107 (patch)
treeb7e5392ba339d86c14d965059aa93149f506d45e /include
parent030e4354efdf28bfee5614a78ff0dbd1a6acecf7 (diff)
downloadsmall-utils-c4e08ec3777b78b6f788eec6737524cc5e856107.tar.gz
small-utils-c4e08ec3777b78b6f788eec6737524cc5e856107.tar.bz2
rename output.h to trace_macros.h
Diffstat (limited to 'include')
-rw-r--r--include/hex_conversion.h2
-rw-r--r--include/trace_macros.h (renamed from include/output.h)4
2 files changed, 3 insertions, 3 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'))
diff --git a/include/output.h b/include/trace_macros.h
index 366e3c4..9fd6a73 100644
--- a/include/output.h
+++ b/include/trace_macros.h
@@ -4,8 +4,8 @@
*
* vim:ts=4:sw=4:expandtab
*/
-#ifndef OUTPUT_H
-#define OUTPUT_H
+#ifndef TRACE_MACROS_H
+#define TRACE_MACROS_H
#include <stdio.h>