Include the system limits.h first since it may contain other stuff
[pcc-libs.git] / libsoftfloat / ledf2.c
blob3be7f5e5fa752cabd28f7b276189c72db409bb52
1 /* $NetBSD: ledf2.c,v 1.1 2000/06/06 08:15:06 bjh21 Exp $ */
3 /*
4 * Written by Ben Harris, 2000. This file is in the Public Domain.
5 */
7 #include "softfloat-for-gcc.h"
8 #include "milieu.h"
9 #include "softfloat.h"
11 flag __ledf2(float64, float64);
13 flag
14 __ledf2(float64 a, float64 b)
17 /* libgcc1.c says 1 - (a <= b) */
18 return 1 - float64_le(a, b);