aboutsummaryrefslogtreecommitdiffstats
path: root/src/arch
diff options
context:
space:
mode:
authorHolger Lubitz <hal@duncan.ol.sub.de>2007-07-28 23:20:00 +0200
committerHolger Lubitz <hal@duncan.ol.sub.de>2007-07-28 23:20:00 +0200
commit0ae6c53bd988269d46501854bb98274e497af8dd (patch)
treea0b496266f330acd6d224e688ceba4773cd33c0a /src/arch
parent63e489c14d15771bb3bc35c6e4609883994acd58 (diff)
downloadipxe-0ae6c53bd988269d46501854bb98274e497af8dd.tar.gz
Revert "make __udivmoddi4 static" - gcc links to it implicitly
This reverts commit 9e7b165017afe1ba82c29d9e914ae85f6f2798c6.
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/i386/core/udivmod64.c2
1 files changed, 1 insertions, 1 deletions
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;