Home | History | Annotate | Line # | Download | only in gen
infinity.c revision 1.4
      1 /*	$NetBSD: infinity.c,v 1.4 1998/07/26 14:14:16 mycroft Exp $	*/
      2 
      3 #include <sys/cdefs.h>
      4 #ifndef lint
      5 __RCSID("$NetBSD: infinity.c,v 1.4 1998/07/26 14:14:16 mycroft Exp $");
      6 #endif /* not lint */
      7 /*
      8  * XXX - THIS IS (probably) COMPLETELY WRONG ON VAX!!!
      9  */
     10 
     11 /* infinity.c */
     12 
     13 #include <math.h>
     14 
     15 /* bytes for +Infinity on a 387 */
     16 const char __infinity[] = { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f };
     17