Remove #ifdef's for IRIX_CC_BUG
[oweals/openssl.git] / crypto / bn / bn_recp.c
index 20ee319fe51bc86154a6ec0b95c51d8c30d7b3b5..cec28633286d319800d5d9a6e88de0c61506216d 100644 (file)
@@ -56,7 +56,8 @@
  * [including the GNU Public Licence.]
  */
 
-#include <stdio.h>
+#define OPENSSL_FIPSAPI
+
 #include "cryptlib.h"
 #include "bn_lcl.h"
 
@@ -214,7 +215,7 @@ err:
  * we can do faster division if the remainder is not required.
  */
 /* r := 2^len / m */
-int BN_reciprocal(BIGNUM *r, const BIGNUM *m, size_t len, BN_CTX *ctx)
+int BN_reciprocal(BIGNUM *r, const BIGNUM *m, int len, BN_CTX *ctx)
        {
        int ret= -1;
        BIGNUM *t;