4 * Written by Ben Harris, 2000. This file is in the Public Domain.
8 #if defined(LIBC_SCCS) && !defined(lint)
10 #endif /* LIBC_SCCS and not lint */
12 #include "softfloat-for-gcc.h"
14 #include "softfloat.h"
16 flag
__eqsf2(float32
, float32
);
19 __eqsf2(float32 a
, float32 b
)
22 /* libgcc1.c says !(a == b) */
23 return !float32_eq(a
, b
);