From: Bernd Edlinger Date: Fri, 13 Sep 2019 04:37:50 +0000 (+0200) Subject: Fix no-asm build in windows X-Git-Tag: OpenSSL_1_0_2u~9 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1c10029a68e910d936f9bf011f8c3bb18a05ff8b;p=oweals%2Fopenssl.git Fix no-asm build in windows Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/9885) --- diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c index 5fab45b2ec..8a793cad9b 100644 --- a/crypto/cryptlib.c +++ b/crypto/cryptlib.c @@ -745,6 +745,11 @@ int OPENSSL_NONPIC_relocated = 0; void OPENSSL_cpuid_setup(void) { } + +unsigned long OPENSSL_rdtsc(void) +{ + return 0; +} #endif #if (defined(_WIN32) || defined(__CYGWIN__)) && defined(_WINDLL)