From: Holger Lubitz Date: Fri, 27 Jul 2007 19:39:58 +0000 (+0200) Subject: make __udivmoddi4 static X-Git-Tag: v0.9.3~159^2~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9e7b165017afe1ba82c29d9e914ae85f6f2798c6;p=thirdparty%2Fipxe.git make __udivmoddi4 static --- diff --git a/src/arch/i386/core/udivmod64.c b/src/arch/i386/core/udivmod64.c index faf6fd8c8..e5a626cc8 100644 --- a/src/arch/i386/core/udivmod64.c +++ b/src/arch/i386/core/udivmod64.c @@ -294,7 +294,7 @@ static void udivmod64 ( const struct uint64 *x, * @ret r Remainder * @ret q Quotient */ -UDItype __udivmoddi4 ( UDItype x, UDItype d, UDItype *r ) { +static UDItype __udivmoddi4 ( UDItype x, UDItype d, UDItype *r ) { UDItype q; UDItype *_x = &x; UDItype *_d = &d;