Home | History | Annotate | Line # | Download | only in gen
infinity.c revision 1.2
      1  1.2  christos /*	$NetBSD: infinity.c,v 1.2 1997/07/13 18:45:46 christos Exp $	*/
      2  1.2  christos 
      3  1.2  christos #include <sys/cdefs.h>
      4  1.1     ragge #ifndef lint
      5  1.2  christos #if 0
      6  1.2  christos static char rcsid[] = "$Id: infinity.c,v 1.2 1997/07/13 18:45:46 christos Exp $";
      7  1.2  christos #else
      8  1.2  christos __RCSID("$NetBSD: infinity.c,v 1.2 1997/07/13 18:45:46 christos Exp $");
      9  1.2  christos #endif
     10  1.1     ragge #endif /* not lint */
     11  1.1     ragge /*
     12  1.1     ragge  * XXX - THIS IS (probably) COMPLETELY WRONG ON VAX!!!
     13  1.1     ragge  */
     14  1.1     ragge 
     15  1.1     ragge /* infinity.c */
     16  1.1     ragge 
     17  1.1     ragge #include <math.h>
     18  1.1     ragge 
     19  1.1     ragge /* bytes for +Infinity on a 387 */
     20  1.1     ragge char __infinity[] = { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f };
     21