aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_div.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2001-03-27 22:30:46 +0000
committerAndy Polyakov <appro@openssl.org>2001-03-27 22:30:46 +0000
commit500230ee94ef5fc9d08b3cf7c92996f4366f1584 (patch)
tree0b0557aa0d6cb60a654c2896597c71a63221beb1 /crypto/bn/bn_div.c
parent347177e052616821d81bcb389faf9764fc8bd65d (diff)
downloadopenssl-500230ee94ef5fc9d08b3cf7c92996f4366f1584.tar.gz
The IRIX fix. Asm recap and corresponding declation.
Submitted by: Reviewed by: PR:
Diffstat (limited to 'crypto/bn/bn_div.c')
-rw-r--r--crypto/bn/bn_div.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/bn/bn_div.c b/crypto/bn/bn_div.c
index bbd0994008..d0b68dc246 100644
--- a/crypto/bn/bn_div.c
+++ b/crypto/bn/bn_div.c
@@ -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;