mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 15:23:04 +00:00
parent
c30b1fe893
commit
f2bc1f0e11
5 changed files with 39 additions and 32 deletions
|
@ -11,14 +11,15 @@
|
|||
|
||||
#include "__rt_div_worker.h"
|
||||
|
||||
ARM_DIVRESULT
|
||||
unsigned long long
|
||||
__rt_udiv(
|
||||
unsigned int divisor,
|
||||
unsigned int dividend)
|
||||
{
|
||||
ARM_DIVRESULT result;
|
||||
|
||||
__rt_udiv_worker(&result, divisor, dividend);
|
||||
return result;
|
||||
__rt_udiv_worker(divisor, dividend, &result);
|
||||
|
||||
return result.raw_data;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue