RT2163: Remove some unneeded #include's
[openssl.git] / crypto / bn / bn_mont.c
index 799763ea9c5967a3f4677c2b2c9c3f016f87a1f3..e41f849479a9fe1be09f208f4f163a4af6bbea29 100644 (file)
 
 #define OPENSSL_FIPSAPI
 
-#include <stdio.h>
 #include "cryptlib.h"
 #include "bn_lcl.h"
 
@@ -204,9 +203,6 @@ static int BN_from_montgomery_word(BIGNUM *ret, BIGNUM *r, BN_MONT_CTX *mont)
        r->top=max;
        n0=mont->n0[0];
 
-#ifdef BN_COUNT
-       fprintf(stderr,"word BN_from_montgomery_word %d * %d\n",nl,nl);
-#endif
        for (carry=0, i=0; i<nl; i++, rp++)
                {
 #ifdef __TANDEM