2 (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
3 See the copyright notice in the ACK home directory, in the file "Copyright".
9 SHIFT TWO EXTENDED NUMBERS INTO PROPER
10 ALIGNMENT FOR ADDITION (exponents are equal)
11 Numbers should not be zero on entry.
23 diff
= e1
->exp
- e2
->exp
;
26 return; /* exponents are equal */
28 if (diff
< 0) { /* e2 is larger */
33 else /* e1 is larger */
38 b64_sft(&(s
->mantissa
), diff
);