From: Bernd Edlinger Date: Thu, 19 Apr 2018 20:17:24 +0000 (+0200) Subject: Fix a warning about missing prototype on arm X-Git-Tag: OpenSSL_1_1_0i~169 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5fc89c1af837026b5812526ef6f519bf7ca42f16;p=oweals%2Fopenssl.git Fix a warning about missing prototype on arm Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/6028) --- diff --git a/crypto/armcap.c b/crypto/armcap.c index 432a06c0c1..1f4e31f3f7 100644 --- a/crypto/armcap.c +++ b/crypto/armcap.c @@ -13,6 +13,7 @@ #include #include #include +#include #include "arm_arch.h" diff --git a/crypto/include/internal/cryptlib.h b/crypto/include/internal/cryptlib.h index f3ec9b67b8..69b00ebf40 100644 --- a/crypto/include/internal/cryptlib.h +++ b/crypto/include/internal/cryptlib.h @@ -74,6 +74,8 @@ FILE *openssl_fopen(const char *filename, const char *mode); void *openssl_fopen(const char *filename, const char *mode); # endif +unsigned long OPENSSL_rdtsc(void); + #ifdef __cplusplus } #endif