1 /* $NetBSD: infinityf_ieee754.c,v 1.1 2003/10/25 22:31:20 kleink Exp $ */
4 * IEEE-compatible infinityf.c -- public domain.
8 #if defined(LIBC_SCCS) && !defined(lint)
10 #endif /* LIBC_SCCS and not lint */
13 #include <machine/endian.h>
15 const union __float_u __infinityf
=
16 #if BYTE_ORDER == BIG_ENDIAN
17 { { 0x7f, 0x80, 0, 0 } };
19 { { 0, 0, 0x80, 0x7f } };