From 1f7e8e937d0e71e7eb3b5deab38b34d0a0159d88 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Thu, 17 Sep 2026 21:50:34 +0200 Subject: Added include guards --- src/utils/dbg_log.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/utils/dbg_log.h') diff --git a/src/utils/dbg_log.h b/src/utils/dbg_log.h index 08d42a3..f22260a 100644 --- a/src/utils/dbg_log.h +++ b/src/utils/dbg_log.h @@ -1,3 +1,6 @@ +#ifndef UTILS_DBG_LOG_H +#define UTILS_DBG_LOG_H + #include void (*nissy_log)(const char *, void *); @@ -31,3 +34,5 @@ write_wrapper(void (*write)(const char *, void *), const char *str, ...) #define DBG_WARN(condition, ...) #define DBG_ASSERT(condition, ...) #endif + +#endif /* UTILS_DBG_LOG_H */ -- cgit v1.3