summaryrefslogtreecommitdiff
path: root/src/libbiguint/bu_gcd.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2017-01-21 14:51:28 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2017-01-21 14:51:28 +0000
commit05db4ba46ae1ca6143bb9b432d1e05e69eddd263 (patch)
treec08156b5d1750c1b56331a2ef1ba537038d771b8 /src/libbiguint/bu_gcd.c
parent9eb3a42e1a2f14b49ece03b661280db53f15a546 (diff)
downloadskalibs-05db4ba46ae1ca6143bb9b432d1e05e69eddd263.tar.xz
Types fix, start: preparation and libbiguint
Diffstat (limited to 'src/libbiguint/bu_gcd.c')
-rw-r--r--src/libbiguint/bu_gcd.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/libbiguint/bu_gcd.c b/src/libbiguint/bu_gcd.c
index d6c5791..919c868 100644
--- a/src/libbiguint/bu_gcd.c
+++ b/src/libbiguint/bu_gcd.c
@@ -1,29 +1,29 @@
/* ISC license. */
-#include <skalibs/uint32.h>
+#include <stdint.h>
#include <skalibs/biguint.h>
-int bu_gcd (uint32 *r, unsigned int rn, uint32 const *a, unsigned int an, uint32 const *b, unsigned int bn)
+int bu_gcd (uint32_t *r, unsigned int rn, uint32_t const *a, unsigned int an, uint32_t const *b, unsigned int bn)
{
if (bu_cmp(a, an, b, bn) < 0)
{
- register uint32 const *t = a ;
+ register uint32_t const *t = a ;
register unsigned int tn = an ;
a = b ; an = bn ;
b = t ; bn = tn ;
}
{
- uint32 trash[an] ;
- uint32 aa[an] ;
- uint32 bb[an] ;
- uint32 *aaa = aa, *bbb = bb ;
+ uint32_t trash[an] ;
+ uint32_t aa[an] ;
+ uint32_t bb[an] ;
+ uint32_t *aaa = aa, *bbb = bb ;
bu_copy_internal(aa, a, an) ;
bu_copy_internal(bb, b, bn) ;
bu_zero(bb+bn, an-bn) ;
while (bu_len(bbb, an))
{
- register uint32 *ttt = aaa ;
+ register uint32_t *ttt = aaa ;
bu_div_internal(aaa, an, bbb, an, trash, an) ;
aaa = bbb ;
bbb = ttt ;