david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

make __udivmoddi4 static

This commit is contained in:
Holger Lubitz 2007-07-27 21:39:58 +02:00
parent 77ffd636fa
commit 9e7b165017
1 changed files with 1 additions and 1 deletions

View 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;