diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2020-01-02 21:12:47 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2020-01-02 21:12:47 +0000 |
commit | 059864c9bece90b6b96747a1a56508f308dddebf (patch) | |
tree | f737c903cef3c08fbe1c24823d2a18cc56b505a8 /crypto/cryptlib.c | |
parent | 1da9a06f2daf1285fb82196ec2995c9c32a2e51c (diff) |
Notes
Diffstat (limited to 'crypto/cryptlib.c')
-rw-r--r-- | crypto/cryptlib.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c index 5fab45b2ec85..79770626fb9e 100644 --- a/crypto/cryptlib.c +++ b/crypto/cryptlib.c @@ -1,6 +1,6 @@ /* crypto/cryptlib.c */ /* ==================================================================== - * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. + * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -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) |