11.1Smatt/* $NetBSD: __aeabi_dcmpeq.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 <sys/cdefs.h>
81.1Smatt#if defined(LIBC_SCCS) && !defined(lint)
91.1Smatt__RCSID("$NetBSD: __aeabi_dcmpeq.c,v 1.1 2013/04/16 10:37:39 matt Exp $");
101.1Smatt#endif /* LIBC_SCCS and not lint */
111.1Smatt
121.1Smatt#include "softfloat-for-gcc.h"
131.1Smatt#include "milieu.h"
141.1Smatt#include "softfloat.h"
151.1Smatt
161.1Smattint __aeabi_dcmpeq(float64, float64);
171.1Smatt
181.1Smattint
191.1Smatt__aeabi_dcmpeq(float64 a, float64 b)
201.1Smatt{
211.1Smatt
221.1Smatt	return float64_eq(a, b);
231.1Smatt}
24