From 213dc63164e8b1b0bb2d5013be2e86398db38974 Mon Sep 17 00:00:00 2001 From: Basil Hess Date: Thu, 7 Mar 2024 15:47:07 +0100 Subject: [PATCH] ensure newline at end of files --- include/mem.h | 2 +- src/arithmetic.h | 2 +- src/generic/arithmetic_128.h | 2 +- src/generic/arithmetic_64.h | 2 +- src/generic/arithmetic_96.h | 2 +- src/generic/arithmetic_common.h | 1 - 6 files changed, 5 insertions(+), 6 deletions(-) diff --git a/include/mem.h b/include/mem.h index 54e95f5..b1dfc14 100644 --- a/include/mem.h +++ b/include/mem.h @@ -58,4 +58,4 @@ void mayo_secure_free(void *mem, size_t size); */ void mayo_secure_clear(void *mem, size_t size); -#endif \ No newline at end of file +#endif diff --git a/src/arithmetic.h b/src/arithmetic.h index 4c12831..738634c 100644 --- a/src/arithmetic.h +++ b/src/arithmetic.h @@ -58,4 +58,4 @@ int sample_solution(const mayo_params_t *p, unsigned char *A, const unsigned cha void m_calculate_PS_SPS(const uint64_t *P1, const uint64_t *P2, const uint64_t *P3, const unsigned char *S, const int m, const int v, const int o, const int k, uint64_t *SPS); -#endif \ No newline at end of file +#endif diff --git a/src/generic/arithmetic_128.h b/src/generic/arithmetic_128.h index 6926b67..b15bae7 100644 --- a/src/generic/arithmetic_128.h +++ b/src/generic/arithmetic_128.h @@ -86,4 +86,4 @@ inline void multiply_bins_128(uint64_t *bins, uint64_t *out) { vec_copy_128(bins + 8, out); } -#endif \ No newline at end of file +#endif diff --git a/src/generic/arithmetic_64.h b/src/generic/arithmetic_64.h index 1c574fc..b450de8 100644 --- a/src/generic/arithmetic_64.h +++ b/src/generic/arithmetic_64.h @@ -124,4 +124,4 @@ inline void multiply_bins_64(uint64_t *bins, uint64_t *out) { vec_copy_64(bins + 4, out); } -#endif \ No newline at end of file +#endif diff --git a/src/generic/arithmetic_96.h b/src/generic/arithmetic_96.h index 237f99b..dbe678c 100644 --- a/src/generic/arithmetic_96.h +++ b/src/generic/arithmetic_96.h @@ -81,4 +81,4 @@ inline void multiply_bins_96(uint64_t *bins, uint64_t *out) { vec_copy_96(bins + 6, out); } -#endif \ No newline at end of file +#endif diff --git a/src/generic/arithmetic_common.h b/src/generic/arithmetic_common.h index d337bc2..7f5a5e1 100644 --- a/src/generic/arithmetic_common.h +++ b/src/generic/arithmetic_common.h @@ -466,4 +466,3 @@ static inline void mul_add_mat_x_m_mat(int m_legs, const unsigned char *mat, con } } #endif -