1d386b48a5
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
13 lines
252 B
C
13 lines
252 B
C
/*
|
|
* infinity.c
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
#include <math.h>
|
|
|
|
/* bytes for +Infinity on a 387 */
|
|
const union __infinity_un __infinity = { { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f } };
|
|
|
|
/* bytes for NaN */
|
|
const union __nan_un __nan = { { 0, 0, 0xc0, 0xff } };
|