1*2fe8fb19SBen Gras /* $NetBSD: infinityl.c,v 1.2 2005/06/12 05:21:27 lukem Exp $ */ 2*2fe8fb19SBen Gras 3*2fe8fb19SBen Gras /* 4*2fe8fb19SBen Gras * infinityl.c - max. value representable in VAX D_floating -- public domain. 5*2fe8fb19SBen Gras * This is _not_ infinity. 6*2fe8fb19SBen Gras */ 7*2fe8fb19SBen Gras 8*2fe8fb19SBen Gras #include <sys/cdefs.h> 9*2fe8fb19SBen Gras #if defined(LIBC_SCCS) && !defined(lint) 10*2fe8fb19SBen Gras __RCSID("$NetBSD: infinityl.c,v 1.2 2005/06/12 05:21:27 lukem Exp $"); 11*2fe8fb19SBen Gras #endif /* LIBC_SCCS and not lint */ 12*2fe8fb19SBen Gras 13*2fe8fb19SBen Gras #include <math.h> 14*2fe8fb19SBen Gras 15*2fe8fb19SBen Gras const union __long_double_u __infinityl = 16*2fe8fb19SBen Gras { { 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } }; 17