Blame stdlib/udiv_qrnnd.c

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