vm: fix a null dereference on out-of-memory
[minix.git] / lib / libc / arch / vax / gen / infinity.c
blobfb0d41fabd1c96ffb4c227948311b1044710bc73
1 /* $NetBSD: infinity.c,v 1.8 2002/02/19 21:50:01 thorpej Exp $ */
3 #include <sys/cdefs.h>
4 #if defined(LIBC_SCCS) && !defined(lint)
5 __RCSID("$NetBSD: infinity.c,v 1.8 2002/02/19 21:50:01 thorpej Exp $");
6 #endif /* LIBC_SCCS and not lint */
7 /*
8 * XXX - This is not correct, but what can we do about it???
9 */
11 /* infinity.c */
13 #include <math.h>
15 /* The highest D float on a vax. */
16 const union __double_u __infinity =
17 { { 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } };