From b0161f6a8961b131c4dd43a4cc240b4a9ffda72d Mon Sep 17 00:00:00 2001 From: Patrick Steuer Date: Mon, 17 Oct 2016 10:24:49 +0200 Subject: [PATCH] Fix strict-warnings build crypto/s390xcap.c: cryptlib.h needs to be included for OPENSSL_cpuid_setup function prototype is located there to avoid build error due to -Werror=missing-prototypes. Signed-off-by: Patrick Steuer Reviewed-by: Rich Salz Reviewed-by: Matt Caswell CLA: trivial --- crypto/s390xcap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/s390xcap.c b/crypto/s390xcap.c index 47d6b6ff51..cf8c372c05 100644 --- a/crypto/s390xcap.c +++ b/crypto/s390xcap.c @@ -3,6 +3,7 @@ #include #include #include +#include "cryptlib.h" extern unsigned long OPENSSL_s390xcap_P[]; -- 2.25.1