Remove building with NOCRYPTO option
[minix3.git] / lib / libc / gen / infinityf_ieee754.c
blobfedbcf36d9e1789ddec2a9333312d3aa7ff5a1ee
1 /* $NetBSD: infinityf_ieee754.c,v 1.2 2005/06/12 05:21:27 lukem Exp $ */
3 /*
4 * IEEE-compatible infinityf.c -- public domain.
5 */
7 #include <sys/cdefs.h>
8 #if defined(LIBC_SCCS) && !defined(lint)
9 __RCSID("$NetBSD: infinityf_ieee754.c,v 1.2 2005/06/12 05:21:27 lukem Exp $");
10 #endif /* LIBC_SCCS and not lint */
12 #include <math.h>
13 #include <machine/endian.h>
15 const union __float_u __infinityf =
16 #if BYTE_ORDER == BIG_ENDIAN
17 { { 0x7f, 0x80, 0, 0 } };
18 #else
19 { { 0, 0, 0x80, 0x7f } };
20 #endif