match the prototype
authorUlf Möller <ulf@openssl.org>
Tue, 1 Feb 2000 23:47:24 +0000 (23:47 +0000)
committerUlf Möller <ulf@openssl.org>
Tue, 1 Feb 2000 23:47:24 +0000 (23:47 +0000)
crypto/bn/bn_div.c

index f15eced0cfa0fea8fb83e731b6ee1351b88ac60c..d8c31e1db00ce1d3daa7145ac031eb1f2ddc15c2 100644 (file)
@@ -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;