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_mod.c | |
parent | 9eb3a42e1a2f14b49ece03b661280db53f15a546 (diff) | |
download | skalibs-05db4ba46ae1ca6143bb9b432d1e05e69eddd263.tar.xz |
Types fix, start: preparation and libbiguint
Diffstat (limited to 'src/libbiguint/bu_mod.c')
-rw-r--r-- | src/libbiguint/bu_mod.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libbiguint/bu_mod.c b/src/libbiguint/bu_mod.c index 2050320..ba021fb 100644 --- a/src/libbiguint/bu_mod.c +++ b/src/libbiguint/bu_mod.c @@ -1,10 +1,10 @@ /* ISC license. */ -#include <skalibs/uint32.h> +#include <stdint.h> #include <skalibs/biguint.h> -int bu_mod (uint32 *a, unsigned int an, uint32 const *b, unsigned int bn) +int bu_mod (uint32_t *a, unsigned int an, uint32_t const *b, unsigned int bn) { - uint32 q[an] ; + uint32_t q[an] ; return bu_div(a, an, b, bn, q, an, a, an) ; } |