infinity.c revision 1.8 1 1.8 thorpej /* $NetBSD: infinity.c,v 1.8 2002/02/19 21:50:01 thorpej Exp $ */
2 1.2 christos
3 1.2 christos #include <sys/cdefs.h>
4 1.7 msaitoh #if defined(LIBC_SCCS) && !defined(lint)
5 1.8 thorpej __RCSID("$NetBSD: infinity.c,v 1.8 2002/02/19 21:50:01 thorpej Exp $");
6 1.7 msaitoh #endif /* LIBC_SCCS and not lint */
7 1.1 ragge /*
8 1.6 ragge * XXX - This is not correct, but what can we do about it???
9 1.1 ragge */
10 1.1 ragge
11 1.1 ragge /* infinity.c */
12 1.1 ragge
13 1.1 ragge #include <math.h>
14 1.1 ragge
15 1.6 ragge /* The highest D float on a vax. */
16 1.8 thorpej const union __double_u __infinity =
17 1.8 thorpej { { 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } };
18