21 lines
366 B
C
21 lines
366 B
C
/*
|
|
(c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
*/
|
|
|
|
/* $Id$ */
|
|
|
|
#include "flt_misc.h"
|
|
|
|
int
|
|
flt_cmp(e1, e2)
|
|
register flt_arith *e1, *e2;
|
|
{
|
|
flt_arith x;
|
|
|
|
flt_sub(e1, e2, &x);
|
|
if (x.m1 == 0 && x.m2 == 0) return 0;
|
|
if (x.flt_sign) return -1;
|
|
return 1;
|
|
}
|