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/compilers.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/utils/compilers.h') diff --git a/src/utils/compilers.h b/src/utils/compilers.h index 1b175bb..a2ae3ba 100644 --- a/src/utils/compilers.h +++ b/src/utils/compilers.h @@ -1,3 +1,6 @@ +#ifndef UTILS_COMPILERS_H +#define UTILS_COMPILERS_H + #if defined(__GNUC__) #define UNUSED __attribute__((unused)) @@ -22,3 +25,5 @@ a[static N] notation for array parameters). #define NON_NULL #endif + +#endif /* UTILS_COMPILERS_H */ -- cgit v1.3