1 /* $NetBSD: infinity.c,v 1.3 1997/07/16 14:38:05 christos Exp $ */ 2 3 #include <sys/cdefs.h> 4 #ifndef lint 5 __RCSID("$NetBSD: infinity.c,v 1.3 1997/07/16 14:38:05 christos 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 char __infinity[] = { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f }; 17