1219820Sjeff#include <sys/cdefs.h>
2219820Sjeff#if 0
3219820Sjeff#if defined(LIBC_SCCS) && !defined(lint)
4219820Sjeff__RCSID("$NetBSD: infinity.c,v 1.2 1998/11/14 19:31:02 christos Exp $");
5219820Sjeff#endif /* LIBC_SCCS and not lint */
6219820Sjeff#endif
7219820Sjeff__FBSDID("$FreeBSD$");
8219820Sjeff
9219820Sjeff/* infinity.c */
10219820Sjeff
11219820Sjeff#include <math.h>
12219820Sjeff
13219820Sjeff/* bytes for +Infinity on a sparc */
14219820Sjeffconst union __infinity_un __infinity = { { 0x7f, 0xf0, 0, 0, 0, 0, 0, 0 } };
15219820Sjeff
16219820Sjeff/* bytes for NaN */
17219820Sjeffconst union __nan_un __nan = { { 0xff, 0xc0, 0, 0 } };
18219820Sjeff