From b6d6e4f03e776ebff833a2c2e2c1f2eebada17b8 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Wed, 16 Nov 2016 15:10:01 +0100 Subject: [PATCH] Crypto: include missing config.h --- src/crypto/crypt_aes.c | 1 + src/crypto/crypt_aes_impl.c | 1 + 2 files changed, 2 insertions(+) diff --git a/src/crypto/crypt_aes.c b/src/crypto/crypt_aes.c index 4d7f6e5c4..77c351700 100644 --- a/src/crypto/crypt_aes.c +++ b/src/crypto/crypt_aes.c @@ -35,6 +35,7 @@ * John Skodon */ +#include "config.h" #include "config_unix.h" #include "config_win32.h" #include "debug.h" diff --git a/src/crypto/crypt_aes_impl.c b/src/crypto/crypt_aes_impl.c index 3fce220f6..7a41992ed 100644 --- a/src/crypto/crypt_aes_impl.c +++ b/src/crypto/crypt_aes_impl.c @@ -24,6 +24,7 @@ * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include "config.h" #include "config_unix.h" #include "config_win32.h" #include "debug.h"