xref: /netbsd-src/lib/libc/arch/vax/gen/infinity.c (revision 268d4c679c491a2ae9edf36b435d7036aea19aba)
1*268d4c67Sthorpej /*	$NetBSD: infinity.c,v 1.8 2002/02/19 21:50:01 thorpej Exp $	*/
291c9c62eSchristos 
391c9c62eSchristos #include <sys/cdefs.h>
4f9b799b6Smsaitoh #if defined(LIBC_SCCS) && !defined(lint)
5*268d4c67Sthorpej __RCSID("$NetBSD: infinity.c,v 1.8 2002/02/19 21:50:01 thorpej Exp $");
6f9b799b6Smsaitoh #endif /* LIBC_SCCS and not lint */
7ce0bb6e8Sragge /*
8765d1130Sragge  * XXX - This is not correct, but what can we do about it???
9ce0bb6e8Sragge  */
10ce0bb6e8Sragge 
11ce0bb6e8Sragge /* infinity.c */
12ce0bb6e8Sragge 
13ce0bb6e8Sragge #include <math.h>
14ce0bb6e8Sragge 
15765d1130Sragge /* The highest D float on a vax. */
16*268d4c67Sthorpej const union __double_u __infinity =
17*268d4c67Sthorpej 	{ { 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } };
18