minix/lib/nbsd_libc/arch/vax/gen/infinity.c
Gianluca Guida b6cbf7203b Import unmodified NetBSD libc in trunk
This patch imports the unmodified current version of NetBSD libc.
The NetBSD includes are in /nbsd_include, while the libc code itself is 
split between lib/nbsd_libc and common/lib/libc.
2011-02-14 19:36:03 +00:00

18 lines
474 B
C

/* $NetBSD: infinity.c,v 1.8 2002/02/19 21:50:01 thorpej Exp $ */
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: infinity.c,v 1.8 2002/02/19 21:50:01 thorpej Exp $");
#endif /* LIBC_SCCS and not lint */
/*
* XXX - This is not correct, but what can we do about it???
*/
/* infinity.c */
#include <math.h>
/* The highest D float on a vax. */
const union __double_u __infinity =
{ { 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } };