From 9890a30b5b921517418ff84e49336b1c245aaaf4 Mon Sep 17 00:00:00 2001 From: Eric-Paul Ickhorn Date: Sun, 3 Mar 2024 21:14:17 +0100 Subject: [PATCH] Renamed file for avoiding name conflicts with other includes The file shadow.h is likely to exist in multiple include folders; it now has been renamed to shadow-registry.h --- inc-c/context.h | 2 +- inc-c/{shadow.h => shadow-registry.h} | 0 src-c/shadow-lookup.c | 2 +- src-c/shadow-pool.c | 2 +- src-c/shadow-registry.c | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename inc-c/{shadow.h => shadow-registry.h} (100%) diff --git a/inc-c/context.h b/inc-c/context.h index e9944ce..6f9da94 100644 --- a/inc-c/context.h +++ b/inc-c/context.h @@ -4,7 +4,7 @@ #include #include -#include +#include typedef struct MtContext { diff --git a/inc-c/shadow.h b/inc-c/shadow-registry.h similarity index 100% rename from inc-c/shadow.h rename to inc-c/shadow-registry.h diff --git a/src-c/shadow-lookup.c b/src-c/shadow-lookup.c index 42fb76e..cd8eccc 100644 --- a/src-c/shadow-lookup.c +++ b/src-c/shadow-lookup.c @@ -1,4 +1,4 @@ -#include +#include #include #include #include diff --git a/src-c/shadow-pool.c b/src-c/shadow-pool.c index 0d67469..7d29203 100644 --- a/src-c/shadow-pool.c +++ b/src-c/shadow-pool.c @@ -1,4 +1,4 @@ -#include +#include #include void mt_init_shadow_pool_allocation(MtShadowPool *pool) diff --git a/src-c/shadow-registry.c b/src-c/shadow-registry.c index 30de340..ea881af 100644 --- a/src-c/shadow-registry.c +++ b/src-c/shadow-registry.c @@ -1,4 +1,4 @@ -#include +#include #include #include