Home | History | Annotate | Line # | Download | only in softfloat
__aeabi_dcmplt.c revision 1.1.2.2
      1  1.1.2.2  tls /* $NetBSD: __aeabi_dcmplt.c,v 1.1.2.2 2013/06/23 06:21:04 tls Exp $ */
      2  1.1.2.2  tls 
      3  1.1.2.2  tls /*
      4  1.1.2.2  tls  * Written by Ben Harris, 2000.  This file is in the Public Domain.
      5  1.1.2.2  tls  */
      6  1.1.2.2  tls 
      7  1.1.2.2  tls #include "softfloat-for-gcc.h"
      8  1.1.2.2  tls #include "milieu.h"
      9  1.1.2.2  tls #include "softfloat.h"
     10  1.1.2.2  tls 
     11  1.1.2.2  tls #include <sys/cdefs.h>
     12  1.1.2.2  tls #if defined(LIBC_SCCS) && !defined(lint)
     13  1.1.2.2  tls __RCSID("$NetBSD: __aeabi_dcmplt.c,v 1.1.2.2 2013/06/23 06:21:04 tls Exp $");
     14  1.1.2.2  tls #endif /* LIBC_SCCS and not lint */
     15  1.1.2.2  tls 
     16  1.1.2.2  tls int __aeabi_dcmplt(float64, float64);
     17  1.1.2.2  tls 
     18  1.1.2.2  tls int
     19  1.1.2.2  tls __aeabi_dcmplt(float64 a, float64 b)
     20  1.1.2.2  tls {
     21  1.1.2.2  tls 
     22  1.1.2.2  tls 	return float64_lt(a, b);
     23  1.1.2.2  tls }
     24