mask_t gf_deserialize(gf x, const uint8_t serial[SER_BYTES], int with_hibit,
uint8_t hi_nmask);
+/* clang-format off */
#define LIMBPERM(i) (i)
#if (ARCH_WORD_BITS == 32)
-#include "arch_32/f_impl.h" /* Bring in the inline implementations */
+#include "arch_32/f_impl.inc" /* Bring in the inline implementations */
#define LIMB_MASK(i) (((1) << LIMB_PLACE_VALUE(i)) - 1)
#elif (ARCH_WORD_BITS == 64)
-#include "arch_64/f_impl.h" /* Bring in the inline implementations */
+#include "arch_64/f_impl.inc" /* Bring in the inline implementations */
#define LIMB_MASK(i) (((1ULL) << LIMB_PLACE_VALUE(i)) - 1)
#endif
+/* clang-format on */
static const gf ZERO = { { { 0 } } }, ONE = { { { 1 } } };