]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
make __udivmoddi4 static
authorHolger Lubitz <hal@duncan.ol.sub.de>
Fri, 27 Jul 2007 19:39:58 +0000 (21:39 +0200)
committerHolger Lubitz <hal@duncan.ol.sub.de>
Fri, 27 Jul 2007 19:39:58 +0000 (21:39 +0200)
src/arch/i386/core/udivmod64.c

index faf6fd8c81932dfe58580ca23abe2af059080a4f..e5a626cc81be0592f589949f6abf728d223fed21 100644 (file)
@@ -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;