Fix WIN32 build by disabling bn* calls.
[openssl.git] / crypto / bn / bn_add.c
index 257c2eafe5d6aa102aa098094ed401b71cb0c8f1..caf35759152f0fbea4a540ea3f3c128a2da92a6e 100644 (file)
@@ -58,7 +58,6 @@
 
 #define OPENSSL_FIPSAPI
 
-#include <stdio.h>
 #include "cryptlib.h"
 #include "bn_lcl.h"
 
@@ -172,9 +171,6 @@ int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
        register BN_ULONG t1,t2,*rp;
        register const BN_ULONG *ap,*bp;
        int i,carry;
-#if defined(IRIX_CC_BUG) && !defined(LINT)
-       int dummy;
-#endif
 
        bn_check_top(a);
        bn_check_top(b);
@@ -211,9 +207,6 @@ int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
                        carry=(t1 < t2);
                        t1=(t1-t2)&BN_MASK2;
                        }
-#if defined(IRIX_CC_BUG) && !defined(LINT)
-               dummy=t1;
-#endif
                *(rp++)=t1&BN_MASK2;
                }
 #else