From: Bodo Möller Date: Mon, 25 Mar 2002 23:15:21 +0000 (+0000) Subject: add missing declaration X-Git-Tag: OpenSSL_0_9_6d~20^2~55 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d5c21afd4b0bcdb5da85bca74e6ea3e9ca00ac47;p=oweals%2Fopenssl.git add missing declaration Submitted by: Nils Larsch --- diff --git a/crypto/bn/bn_lcl.h b/crypto/bn/bn_lcl.h index 73792f1220..8a4dba375a 100644 --- a/crypto/bn/bn_lcl.h +++ b/crypto/bn/bn_lcl.h @@ -428,6 +428,8 @@ void bn_mul_low_recursive(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,int n2, BN_ULONG *t); void bn_mul_high(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,BN_ULONG *l,int n2, BN_ULONG *t); +BN_ULONG bn_add_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, + int cl, int dl); BN_ULONG bn_sub_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, int cl, int dl);