Home | History | Annotate | Line # | Download | only in gen
      1 /*	$NetBSD: infinityl.c,v 1.2 2005/06/12 05:21:27 lukem Exp $	*/
      2 
      3 /*
      4  * IEEE-compatible infinityl.c for big-endian 128-bit format -- public domain.
      5  */
      6 
      7 #include <sys/cdefs.h>
      8 #if defined(LIBC_SCCS) && !defined(lint)
      9 __RCSID("$NetBSD: infinityl.c,v 1.2 2005/06/12 05:21:27 lukem Exp $");
     10 #endif /* LIBC_SCCS and not lint */
     11 
     12 #include <math.h>
     13 
     14 const union __long_double_u __infinityl =
     15 	{ { 0x7f, 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } };
     16