From: Jeroen Hofstee Date: Sun, 22 Jun 2014 21:24:04 +0000 (+0200) Subject: lib: div64: add missing include X-Git-Tag: v2014.10-rc1~136 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e259d6a320d0280f02966b8bc35316fb136c5e24;p=platform%2Fkernel%2Fu-boot.git lib: div64: add missing include Include the function its prototype to prevent the warning that it has no prototype. Signed-off-by: Jeroen Hofstee --- diff --git a/lib/div64.c b/lib/div64.c index e688a91..795ef0e 100644 --- a/lib/div64.c +++ b/lib/div64.c @@ -16,6 +16,7 @@ * assembly versions such as arch/powerpc/lib/div64.S and arch/sh/lib/div64.S. */ +#include #include uint32_t __div64_32(uint64_t *n, uint32_t base)