]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPkg/Library/ArmSoftFloatLib/Arm/__aeabi_fcmplt.c
53585f0b8205e6326e1a1c876f30ecc4dd81cdf0
[mirror_edk2.git] / ArmPkg / Library / ArmSoftFloatLib / Arm / __aeabi_fcmplt.c
1 /* $NetBSD: __aeabi_fcmplt.c,v 1.1 2013/04/16 10:37:39 matt Exp $ */
2
3 /** @file
4 *
5 * Copyright (c) 2013 - 2014, ARM Limited. All rights reserved.
6 *
7 * SPDX-License-Identifier: BSD-2-Clause-Patent
8 *
9 **/
10
11 /*
12 * Written by Ben Harris, 2000. This file is in the Public Domain.
13 */
14
15 #include "softfloat-for-gcc.h"
16 #include "milieu.h"
17 #include "softfloat.h"
18
19 #if defined(LIBC_SCCS) && !defined(lint)
20 __RCSID("$NetBSD: __aeabi_fcmplt.c,v 1.1 2013/04/16 10:37:39 matt Exp $");
21 #endif /* LIBC_SCCS and not lint */
22
23 int __aeabi_fcmplt(float32, float32);
24
25 int
26 __aeabi_fcmplt(float32 a, float32 b)
27 {
28
29 return float32_lt(a, b);
30 }