b6cbf7203b
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.
17 lines
474 B
C
17 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 } };
|