aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Steuer <psteuer@mail.de>2016-10-15 17:41:41 +0200
committerMatt Caswell <matt@openssl.org>2016-10-18 17:09:47 +0100
commitc0dba2cca4d2bf3526d90a2050bdb17148ce803f (patch)
treec0fd40de0b005463c1b702be6dd443d6426888c3
parent96cce8205001b5801b10abf53e0ee81ee52d5d89 (diff)
downloadopenssl-c0dba2cca4d2bf3526d90a2050bdb17148ce803f.tar.gz
Fix strict-warnings build
crypto/s390xcap.c: internal/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 <psteuer@mail.de> Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> CLA: trivial
-rw-r--r--crypto/s390xcap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/s390xcap.c b/crypto/s390xcap.c
index 675f2ecb92..93c5327ffb 100644
--- a/crypto/s390xcap.c
+++ b/crypto/s390xcap.c
@@ -12,6 +12,7 @@
#include <string.h>
#include <setjmp.h>
#include <signal.h>
+#include "internal/cryptlib.h"
extern unsigned long OPENSSL_s390xcap_P[];