summaryrefslogtreecommitdiffstats
path: root/src/arch/i386
diff options
context:
space:
mode:
authorHolger Lubitz2007-07-27 21:39:58 +0200
committerHolger Lubitz2007-07-27 21:39:58 +0200
commit9e7b165017afe1ba82c29d9e914ae85f6f2798c6 (patch)
treeabbab2fc64604f29000c9462d32a4b8c7046672a /src/arch/i386
parentmake RTL8169_READ_GMII_REG, RTL8169_WRITE_GMII_REG static (diff)
downloadipxe-9e7b165017afe1ba82c29d9e914ae85f6f2798c6.tar.gz
ipxe-9e7b165017afe1ba82c29d9e914ae85f6f2798c6.tar.xz
ipxe-9e7b165017afe1ba82c29d9e914ae85f6f2798c6.zip
make __udivmoddi4 static
Diffstat (limited to 'src/arch/i386')
-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 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;