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/solvers/h48/map.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/solvers/h48/map.h') diff --git a/src/solvers/h48/map.h b/src/solvers/h48/map.h index c9cfb06..75b5236 100644 --- a/src/solvers/h48/map.h +++ b/src/solvers/h48/map.h @@ -1,3 +1,6 @@ +#ifndef SOLVERS_H48_MAP_H +#define SOLVERS_H48_MAP_H + STATIC void h48map_create(h48map_t [NON_NULL], uint64_t, uint64_t); STATIC void h48map_clear(h48map_t [NON_NULL]); STATIC void h48map_destroy(h48map_t [NON_NULL]); @@ -82,3 +85,5 @@ h48map_nextkvpair(h48map_t map[NON_NULL], uint64_t p[NON_NULL]) return kv; } + +#endif /* SOLVERS_H48_MAP_H */ -- cgit v1.3