From 35748f40d62a9860f4dc64ce5fd780a1dd85b318 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Mon, 25 Mar 2002 23:14:50 +0000 Subject: [PATCH] add missing declaration Submitted by: Nils Larsch --- crypto/bn/bn_lcl.h | 2 ++ 1 file changed, 2 insertions(+) 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); -- 2.25.1