diff options
| author | Olivier Houchard <cognet@FreeBSD.org> | 2004-05-14 12:13:06 +0000 |
|---|---|---|
| committer | Olivier Houchard <cognet@FreeBSD.org> | 2004-05-14 12:13:06 +0000 |
| commit | 15144b0f960e6044ec23ad91c5f76f37d1de36ba (patch) | |
| tree | ceed0cf5f6aab04b0025b06d91f2b74ab9812740 /lib/libc/softfloat/gtdf2.c | |
| parent | 2357939bc239bd5334a169b62313806178dd8f30 (diff) | |
Notes
Diffstat (limited to 'lib/libc/softfloat/gtdf2.c')
| -rw-r--r-- | lib/libc/softfloat/gtdf2.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/libc/softfloat/gtdf2.c b/lib/libc/softfloat/gtdf2.c new file mode 100644 index 000000000000..ff5764a519c6 --- /dev/null +++ b/lib/libc/softfloat/gtdf2.c @@ -0,0 +1,22 @@ +/* $NetBSD: gtdf2.c,v 1.1 2000/06/06 08:15:05 bjh21 Exp $ */ + +/* + * Written by Ben Harris, 2000. This file is in the Public Domain. + */ + +#include "softfloat-for-gcc.h" +#include "milieu.h" +#include "softfloat.h" + +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + +flag __gtdf2(float64, float64); + +flag +__gtdf2(float64 a, float64 b) +{ + + /* libgcc1.c says a > b */ + return float64_lt(b, a); +} |
