From: Nils Larsch Date: Tue, 28 Feb 2006 20:08:46 +0000 (+0000) Subject: fix "#ifndef HZ" statement X-Git-Tag: OpenSSL_0_9_8b~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e2217e7ed57e90c7c9b5205c35c9842214581674;p=openssl fix "#ifndef HZ" statement PR: 1287 --- diff --git a/crypto/rc2/rc2speed.c b/crypto/rc2/rc2speed.c index b16e6e2ed1..85cf6f65bf 100644 --- a/crypto/rc2/rc2speed.c +++ b/crypto/rc2/rc2speed.c @@ -105,10 +105,10 @@ OPENSSL_DECLARE_EXIT #ifndef HZ #ifndef CLK_TCK #define HZ 100.0 -#endif -#else /* CLK_TCK */ +#else /* CLK_TCK */ #define HZ ((double)CLK_TCK) -#endif +#endif /* CLK_TCK */ +#endif /* HZ */ #define BUFSIZE ((long)1024) long run=0;