summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_sqr.c
diff options
context:
space:
mode:
authorDoug Goldstein <cardoe@gentoo.org>2014-08-14 23:22:41 -0400
committerRich Salz <rsalz@akamai.com>2014-08-18 12:50:00 -0400
commit448155e9bbda27cbba365ff549a7e2044a8a399f (patch)
tree72b5cf9a5b81bf001fa7113bd16dd3331b272e3d /crypto/bn/bn_sqr.c
parentf756fb430eb8f5f70696f174460eb90740b318f7 (diff)
RT2163: Remove some unneeded #include's
Several files #include stdio.h and don't need it. Also, per tjh, remove BN_COUNT Reviewed-by: Emilia Kasper <emilia@openssl.org>
Diffstat (limited to 'crypto/bn/bn_sqr.c')
-rw-r--r--crypto/bn/bn_sqr.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/crypto/bn/bn_sqr.c b/crypto/bn/bn_sqr.c
index 65bbf165d0..74d7df6ef4 100644
--- a/crypto/bn/bn_sqr.c
+++ b/crypto/bn/bn_sqr.c
@@ -56,7 +56,6 @@
* [including the GNU Public Licence.]
*/
-#include <stdio.h>
#include "cryptlib.h"
#include "bn_lcl.h"
@@ -68,9 +67,6 @@ int BN_sqr(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx)
int ret = 0;
BIGNUM *tmp,*rr;
-#ifdef BN_COUNT
- fprintf(stderr,"BN_sqr %d * %d\n",a->top,a->top);
-#endif
bn_check_top(a);
al=a->top;
@@ -210,9 +206,6 @@ void bn_sqr_recursive(BN_ULONG *r, const BN_ULONG *a, int n2, BN_ULONG *t)
int zero,c1;
BN_ULONG ln,lo,*p;
-#ifdef BN_COUNT
- fprintf(stderr," bn_sqr_recursive %d * %d\n",n2,n2);
-#endif
if (n2 == 4)
{
#ifndef BN_SQR_COMBA