Commit 744843ed authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

ntdll: Reimplement _aullrem using 32-bit arithmetic.

parent d53672c6
...@@ -878,7 +878,9 @@ __ASM_STDCALL_FUNC( _alldvrm, 16, ...@@ -878,7 +878,9 @@ __ASM_STDCALL_FUNC( _alldvrm, 16,
*/ */
ULONGLONG WINAPI _aullrem( ULONGLONG a, ULONGLONG b ) ULONGLONG WINAPI _aullrem( ULONGLONG a, ULONGLONG b )
{ {
return a % b; ULONGLONG r;
udivmod(a, b, &r);
return r;
} }
/****************************************************************************** /******************************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment