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 COMPARE SINGLES (CMF 4)
20 * return ((f1 < f2) ? 1 : (f1 - f2))
22 #define SIGN(x) (((x) < 0) ? -1 : 1)
26 l1 = get4((char *) &f1);
27 l2 = get4((char *) &f2);
29 if (l1 == l2) return 0;
34 if ((l1 & 0x7fffffff) == 0 &&
35 (l2 & 0x7fffffff) == 0) return 0;
36 return ((sign1 > 0) ? -1 : 1);
39 return (sign1 * ((l1 < l2) ? 1 : -1));