summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 e5a626cc8..faf6fd8c8 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;