projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
676432d
)
cyclecount is only used when __GNUC__ isn't defined.
author
Richard Levitte
<levitte@openssl.org>
Mon, 18 Sep 2000 11:44:40 +0000
(11:44 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Mon, 18 Sep 2000 11:44:40 +0000
(11:44 +0000)
crypto/rand/rand_win.c
patch
|
blob
|
history
diff --git
a/crypto/rand/rand_win.c
b/crypto/rand/rand_win.c
index 2a4f76781305036e847ca96217abc211b0a79656..acdef305186d139a277e658073537b9aca0e3452 100644
(file)
--- a/
crypto/rand/rand_win.c
+++ b/
crypto/rand/rand_win.c
@@
-525,11
+525,12
@@
void RAND_screen(void) /* function available for backward compatibility */
/* feed timing information to the PRNG */
static void readtimer(void)
{
- DWORD w
, cyclecount
;
+ DWORD w;
LARGE_INTEGER l;
static int have_perfc = 1;
#ifndef __GNUC__
static int have_tsc = 1;
+ DWORD cyclecount;
if (have_tsc) {
__try {