1 /* $NetBSD: infinity.c,v 1.5 1998/11/14 19:31:02 christos Exp $ */ 2 3 #include <sys/cdefs.h> 4 #ifndef lint 5 __RCSID("$NetBSD: infinity.c,v 1.5 1998/11/14 19:31:02 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 const char __infinity[] = { 0, 0, 0, 0, 0, 0, (char)0xf0, 0x7f }; 17