summaryrefslogtreecommitdiff
path: root/lib/libc/softfloat/ltsf2.c
blob: 1bd736d9b342b9f8ca69595fbf4d7126513abb2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* $NetBSD: ltsf2.c,v 1.1 2000/06/06 08:15:06 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>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: ltsf2.c,v 1.1 2000/06/06 08:15:06 bjh21 Exp $");
#endif /* LIBC_SCCS and not lint */

flag __ltsf2(float32, float32);

flag
__ltsf2(float32 a, float32 b)
{

	/* libgcc1.c says -(a < b) */
	return -float32_lt(a, b);
}
09:59 +0000'>2001-10-16Remove inclusion of <sys/types.h> from synopsis; it is no longer needed.kleink 2001-09-16Sort sections, sort SEE ALSO, punctuation and miscellanous fixes.wiz 2001-09-16Boring whitespace fixes.wiz 2000-01-26EINVAL may be returned when address family mismatches. (from openbsd)itojun 1999-12-02Add a LIBRARY section to system call manual pages. While it's clear that thekleink 1999-03-23document new bind() restrictionslukem 1999-03-22Last of the .Os cleanups. .Os is defined in the tmac.doc-common file,garbled 1999-02-10Reflect the addition of socklen_t.kleink 1998-08-29first pass at fixing up capitalization of function names andlukem 1998-04-28Change occurrences of "UNIX" to .Ux or .At as appropriate.fair