infinityl.c revision 1.1 1 1.1 kleink /* $NetBSD: infinityl.c,v 1.1 2003/10/25 22:31:20 kleink Exp $ */
2 1.1 kleink
3 1.1 kleink /*
4 1.1 kleink * IEEE-compatible infinityl.c for Motorola 68k 80-bit format -- public domain.
5 1.1 kleink * Note that the representation includes 16 bits of padding between exponent
6 1.1 kleink * and mantissa.
7 1.1 kleink */
8 1.1 kleink
9 1.1 kleink #include <math.h>
10 1.1 kleink
11 1.1 kleink const union __long_double_u __infinityl =
12 1.1 kleink { { 0x7f, 0xff, 0, 0, 0x80, 0, 0, 0, 0, 0, 0, 0 } };
13