diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-02-21 12:05:07 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-02-21 12:05:07 +0000 |
commit | 49d8fa1058aaf23c29e074b2314492ae40d2f557 (patch) | |
tree | 393f884d5a99f984e992a0f35f1b02ac43536217 /src/libbiguint/bu_addc.c | |
parent | fdffefb8032922ce7ffe4c00816072a8ff2148fc (diff) | |
download | skalibs-49d8fa1058aaf23c29e074b2314492ae40d2f557.tar.xz |
Types change: big pass on libstddjb and libunixonacid
libdatastruct still missing, library still not functional
Diffstat (limited to 'src/libbiguint/bu_addc.c')
-rw-r--r-- | src/libbiguint/bu_addc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libbiguint/bu_addc.c b/src/libbiguint/bu_addc.c index 20a2740..1a7f164 100644 --- a/src/libbiguint/bu_addc.c +++ b/src/libbiguint/bu_addc.c @@ -9,14 +9,14 @@ #include <errno.h> #include <skalibs/biguint.h> -int bu_addc (uint32_t *c, unsigned int cn, uint32_t const *a, unsigned int an, uint32_t const *b, unsigned int bn, register int carry) +int bu_addc (uint32_t *c, unsigned int cn, uint32_t const *a, unsigned int an, uint32_t const *b, unsigned int bn, int carry) { - register unsigned int i = 0 ; + unsigned int i = 0 ; for (; i < cn ; i++) { - register uint32_t ai = (i < an) ? a[i] : 0 ; - register uint32_t bi = (i < bn) ? b[i] : 0 ; - register uint32_t ci = ai + bi + carry ; + uint32_t ai = (i < an) ? a[i] : 0 ; + uint32_t bi = (i < bn) ? b[i] : 0 ; + uint32_t ci = ai + bi + carry ; carry = (carry || bi) && (ci < ai) ; c[i] = ci ; } |