Blame stdlib/udiv_qrnnd.c

Packit 6c4009
/* For some machines GNU MP needs to define an auxiliary function:
Packit 6c4009
Packit 6c4009
   udiv_qrnnd (quotient, remainder, high_numerator, low_numerator, denominator)
Packit 6c4009
Packit 6c4009
   Divides a two-word unsigned integer, composed by the integers
Packit 6c4009
   HIGH_NUMERATOR and LOW_NUMERATOR, by DENOMINATOR and places the quotient
Packit 6c4009
   in QUOTIENT and the remainder in REMAINDER.  HIGH_NUMERATOR must be less
Packit 6c4009
   than DENOMINATOR for correct operation.  If, in addition, the most
Packit 6c4009
   significant bit of DENOMINATOR must be 1, then the pre-processor symbol
Packit 6c4009
   UDIV_NEEDS_NORMALIZATION is defined to 1.  */