1995-01-23 01:30:24 +00:00
|
|
|
/*
|
|
|
|
* infinity.c
|
|
|
|
*/
|
1994-08-22 09:19:50 +00:00
|
|
|
|
2002-03-22 21:53:29 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-08-22 09:19:50 +00:00
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
/* bytes for +Infinity on a 387 */
|
2002-10-31 23:05:20 +00:00
|
|
|
const union __infinity_un __infinity = { { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f } };
|