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/constants.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/utils/constants.h') diff --git a/src/utils/constants.h b/src/utils/constants.h index 3eed27d..3d0f6e3 100644 --- a/src/utils/constants.h +++ b/src/utils/constants.h @@ -1,3 +1,6 @@ +#ifndef UTILS_CONSTANTS_H +#define UTILS_CONSTANTS_H + #define UINT8_BIT(i) (UINT8_C(1) << (uint8_t)(i)) #define FACTORIAL_MAX UINT64_C(12) @@ -42,3 +45,5 @@ STATIC uint64_t binomial[12][12] = { {1, 10, 45, 120, 210, 252, 210, 120, 45, 10, 1, 0}, {1, 11, 55, 165, 330, 462, 462, 330, 165, 55, 11, 1}, }; + +#endif /* UTILS_CONSTANTS_H */ -- cgit v1.3