xref: /minix3/lib/libm/src/s_infinity.c (revision 2fe8fb192fe7e8720e3e7a77f928da545e872a6a)
1*2fe8fb19SBen Gras /*	$NetBSD: s_infinity.c,v 1.5 2003/07/26 19:25:05 salo Exp $	*/
2*2fe8fb19SBen Gras 
3*2fe8fb19SBen Gras /*
4*2fe8fb19SBen Gras  * Written by J.T. Conklin <jtc@NetBSD.org>.
5*2fe8fb19SBen Gras  * Public domain.
6*2fe8fb19SBen Gras  */
7*2fe8fb19SBen Gras 
8*2fe8fb19SBen Gras #include <sys/types.h>
9*2fe8fb19SBen Gras 
10*2fe8fb19SBen Gras #if BYTE_ORDER == LITTLE_ENDIAN
11*2fe8fb19SBen Gras char __infinity[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x7f };
12*2fe8fb19SBen Gras #else
13*2fe8fb19SBen Gras char __infinity[] = { 0x7f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
14*2fe8fb19SBen Gras #endif
15