diff options
Diffstat (limited to 'src/libbiguint/bu_subc.c')
-rw-r--r-- | src/libbiguint/bu_subc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libbiguint/bu_subc.c b/src/libbiguint/bu_subc.c index a5d0037..cff2a05 100644 --- a/src/libbiguint/bu_subc.c +++ b/src/libbiguint/bu_subc.c @@ -6,17 +6,17 @@ #endif #include <errno.h> -#include <skalibs/uint32.h> +#include <stdint.h> #include <skalibs/biguint.h> -int bu_subc (uint32 *c, unsigned int cn, uint32 const *a, unsigned int an, uint32 const *b, unsigned int bn, register int carry) +int bu_subc (uint32_t *c, unsigned int cn, uint32_t const *a, unsigned int an, uint32_t const *b, unsigned int bn, register int carry) { register unsigned int i = 0 ; for (; i < cn ; i++) { - register uint32 ai = (i < an) ? a[i] : 0 ; - register uint32 bi = (i < bn) ? b[i] : 0 ; - register uint32 ci = ai - bi - carry ; + 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 ; carry = (carry || bi) && (ci > ai) ; c[i] = ci ; } |