summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_div.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-02-01 23:47:24 +0000
committerUlf Möller <ulf@openssl.org>2000-02-01 23:47:24 +0000
commit0bde1089f895718db2fe2637fda4a0c2ed6df904 (patch)
tree12ac864e66ac2812a4f2f0416b2325b54c631f30 /crypto/bn/bn_div.c
parentcf802b983f73068a3c98c3795c29f5c75654731d (diff)
match the prototype
Diffstat (limited to 'crypto/bn/bn_div.c')
-rw-r--r--crypto/bn/bn_div.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/bn/bn_div.c b/crypto/bn/bn_div.c
index f15eced0cf..d8c31e1db0 100644
--- a/crypto/bn/bn_div.c
+++ b/crypto/bn/bn_div.c
@@ -63,7 +63,8 @@
/* The old slow way */
#if 0
-int BN_div(BIGNUM *dv, BIGNUM *rem, BIGNUM *m, BIGNUM *d, BN_CTX *ctx)
+int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d,
+ BN_CTX *ctx)
{
int i,nm,nd;
BIGNUM *D;