]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/bn/old/bn_high.c
Change functions to ANSI C.
[thirdparty/openssl.git] / crypto / bn / old / bn_high.c
index 90268fb31a4c58d9319074dcdb6b5e19dcdc3f8e..763bcb605b3a74a6c2cb161b997fc0905d53b6a0 100644 (file)
@@ -15,9 +15,7 @@ int BN_mul_high(BIGNUM *r,BIGNUM *a,BIGNUM *b,BIGNUM *low, int words);
 #undef t1
 #undef t2
 
-int BN_mul_high(r,a,b,low,words)
-BIGNUM *r,*a,*b,*low;
-int words;
+int BN_mul_high(BIGNUM *r, BIGNUM *a, BIGNUM *b, BIGNUM *low, int words)
        {
        int w2,borrow=0,full=0;
        BIGNUM t1,t2,t3,h,ah,al,bh,bl,m,s0,s1;