Fix no-asm build in windows

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9885)
This commit is contained in:
Bernd Edlinger 2019-09-13 06:37:50 +02:00
parent fc437d8dd3
commit 1c10029a68

View File

@ -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)