infinity.c revision 1.7.2.1 1 1.7.2.1 nathanw /* $NetBSD: infinity.c,v 1.7.2.1 2002/03/08 21:34:55 nathanw 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.7.2.1 nathanw __RCSID("$NetBSD: infinity.c,v 1.7.2.1 2002/03/08 21:34:55 nathanw 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.7.2.1 nathanw const union __double_u __infinity =
17 1.7.2.1 nathanw { { 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } };
18