From 05db4ba46ae1ca6143bb9b432d1e05e69eddd263 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Sat, 21 Jan 2017 14:51:28 +0000 Subject: Types fix, start: preparation and libbiguint --- src/libbiguint/bu_copy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libbiguint/bu_copy.c') 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 #include -#include #include -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) -- cgit v1.3.1