From 48a98efc58c8b830c27d7174e4a85defb093c2a6 Mon Sep 17 00:00:00 2001 From: Andrew Kozlik Date: Mon, 29 Apr 2019 12:04:31 +0200 Subject: [PATCH] crypto/shamir: Reorder #includes. --- crypto/shamir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/shamir.c b/crypto/shamir.c index b825dad23e..d082478969 100644 --- a/crypto/shamir.c +++ b/crypto/shamir.c @@ -36,9 +36,9 @@ * lookup operations, as all proper crypto code must be. */ -#include "shamir.h" #include #include "memzero.h" +#include "shamir.h" static void bitslice(uint32_t r[8], const uint8_t *x, size_t len) { size_t bit_idx, arr_idx;