From 0ae6c53bd988269d46501854bb98274e497af8dd Mon Sep 17 00:00:00 2001 From: Holger Lubitz Date: Sat, 28 Jul 2007 23:20:00 +0200 Subject: [PATCH] Revert "make __udivmoddi4 static" - gcc links to it implicitly This reverts commit 9e7b165017afe1ba82c29d9e914ae85f6f2798c6. --- src/arch/i386/core/udivmod64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/i386/core/udivmod64.c b/src/arch/i386/core/udivmod64.c index e5a626cc..faf6fd8c 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 */ -static UDItype __udivmoddi4 ( UDItype x, UDItype d, UDItype *r ) { +UDItype __udivmoddi4 ( UDItype x, UDItype d, UDItype *r ) { UDItype q; UDItype *_x = &x; UDItype *_d = &d;