The IRIX fix. Asm recap and corresponding declation.
[openssl.git] / crypto / bn / bn_div.c
index bbd09940089cf38cabc3f014f04682c083413dca..d0b68dc246e7c6d8f24242c1e0db9fa8d6b4be75 100644 (file)
@@ -250,6 +250,7 @@ int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
                {
                BN_ULONG q,l0;
 #if defined(BN_DIV3W) && !defined(OPENSSL_NO_ASM)
+               BN_ULONG bn_div_3_words(BN_ULONG*,BN_ULONG,BN_ULONG);
                q=bn_div_3_words(wnump,d1,d0);
 #else
                BN_ULONG n0,n1,rem=0;