diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-01-21 14:51:28 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-01-21 14:51:28 +0000 |
commit | 05db4ba46ae1ca6143bb9b432d1e05e69eddd263 (patch) | |
tree | c08156b5d1750c1b56331a2ef1ba537038d771b8 /src/libbiguint/bu_mul.c | |
parent | 9eb3a42e1a2f14b49ece03b661280db53f15a546 (diff) | |
download | skalibs-05db4ba46ae1ca6143bb9b432d1e05e69eddd263.tar.xz |
Types fix, start: preparation and libbiguint
Diffstat (limited to 'src/libbiguint/bu_mul.c')
-rw-r--r-- | src/libbiguint/bu_mul.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libbiguint/bu_mul.c b/src/libbiguint/bu_mul.c index 184d652..45d0efe 100644 --- a/src/libbiguint/bu_mul.c +++ b/src/libbiguint/bu_mul.c @@ -1,21 +1,21 @@ /* ISC license. */ -#include <skalibs/uint32.h> +#include <stdint.h> #include <skalibs/uint64.h> #include <skalibs/biguint.h> /* No Karatsuba. Keep it simple, stupid. */ -int bu_mul (uint32 *x, unsigned int xn, uint32 const *a, unsigned int an, uint32 const *b, unsigned int bn) +int bu_mul (uint32_t *x, unsigned int xn, uint32_t const *a, unsigned int an, uint32_t const *b, unsigned int bn) { unsigned int alen = bu_len(a, an) ; unsigned int blen = bu_len(b, bn) ; - uint32 c[alen + blen] ; + uint32_t c[alen + blen] ; register unsigned int i = 0 ; bu_zero(c, alen + blen) ; for (; i < alen ; i++) { - register uint32 carry = 0 ; + register uint32_t carry = 0 ; register unsigned int j = 0 ; for (; j < blen ; j++) { @@ -23,8 +23,8 @@ int bu_mul (uint32 *x, unsigned int xn, uint32 const *a, unsigned int an, uint32 t *= b[j] ; t += c[i+j] ; t += carry ; - c[i+j] = (uint32)t ; - carry = (uint32)(t >> 32) ; + c[i+j] = (uint32_t)t ; + carry = (uint32_t)(t >> 32) ; } c[i+j] += carry ; } |