__aeabi_dcmpgt.c revision 1.1
11.1Smatt/* $NetBSD: __aeabi_dcmpgt.c,v 1.1 2013/04/16 10:37:39 matt Exp $ */ 21.1Smatt 31.1Smatt/* 41.1Smatt * Written by Ben Harris, 2000. This file is in the Public Domain. 51.1Smatt */ 61.1Smatt 71.1Smatt#include "softfloat-for-gcc.h" 81.1Smatt#include "milieu.h" 91.1Smatt#include "softfloat.h" 101.1Smatt 111.1Smatt#include <sys/cdefs.h> 121.1Smatt#if defined(LIBC_SCCS) && !defined(lint) 131.1Smatt__RCSID("$NetBSD: __aeabi_dcmpgt.c,v 1.1 2013/04/16 10:37:39 matt Exp $"); 141.1Smatt#endif /* LIBC_SCCS and not lint */ 151.1Smatt 161.1Smattint __aeabi_dcmpgt(float64, float64); 171.1Smatt 181.1Smattint 191.1Smatt__aeabi_dcmpgt(float64 a, float64 b) 201.1Smatt{ 211.1Smatt 221.1Smatt return !float64_le(a, b); 231.1Smatt} 24