From 6ecfee395560a5fd24aa053594640ce74eb8b2d5 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Sun, 26 Jan 2014 10:41:04 +0100 Subject: updated prototypes of _gnutls_mpi_sub_ui, _gnutls_mpi_add_ui, _gnutls_mpi_mul_ui --- lib/crypto-backend.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/crypto-backend.h') diff --git a/lib/crypto-backend.h b/lib/crypto-backend.h index 7b06e15eab..6627a9f68a 100644 --- a/lib/crypto-backend.h +++ b/lib/crypto-backend.h @@ -140,16 +140,16 @@ typedef struct gnutls_crypto_bigint { const bigint_t a, const bigint_t b); /* w = a * b */ - bigint_t(*bigint_mul) (bigint_t w, const bigint_t a, + bigint_t(*bigint_mul) (bigint_t w, const bigint_t a, const bigint_t b); /* w = a + b */ - bigint_t(*bigint_add_ui) (bigint_t w, const bigint_t a, + int (*bigint_add_ui) (bigint_t w, const bigint_t a, unsigned long b); /* w = a - b */ - bigint_t(*bigint_sub_ui) (bigint_t w, const bigint_t a, + int (*bigint_sub_ui) (bigint_t w, const bigint_t a, unsigned long b); /* w = a * b */ - bigint_t(*bigint_mul_ui) (bigint_t w, const bigint_t a, + int (*bigint_mul_ui) (bigint_t w, const bigint_t a, unsigned long b); /* q = a / b */ bigint_t(*bigint_div) (bigint_t q, const bigint_t a, -- cgit v1.2.1