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_copy.c | |
parent | 9eb3a42e1a2f14b49ece03b661280db53f15a546 (diff) | |
download | skalibs-05db4ba46ae1ca6143bb9b432d1e05e69eddd263.tar.xz |
Types fix, start: preparation and libbiguint
Diffstat (limited to 'src/libbiguint/bu_copy.c')
-rw-r--r-- | src/libbiguint/bu_copy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libbiguint/bu_copy.c b/src/libbiguint/bu_copy.c index aff6e51..b975577 100644 --- a/src/libbiguint/bu_copy.c +++ b/src/libbiguint/bu_copy.c @@ -5,11 +5,11 @@ #define _BSD_SOURCE #endif +#include <stdint.h> #include <errno.h> -#include <skalibs/uint32.h> #include <skalibs/biguint.h> -int bu_copy (uint32 *b, unsigned int bn, uint32 const *a, unsigned int an) +int bu_copy (uint32_t *b, unsigned int bn, uint32_t const *a, unsigned int an) { register unsigned int alen = bu_len(a, an) ; if (bn < alen) |