1998-07-26 18:13:00 +04:00
|
|
|
/* $NetBSD: infinity.c,v 1.3 1998/07/26 14:14:15 mycroft Exp $ */
|
1997-07-13 22:45:15 +04:00
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
1993-10-07 03:17:24 +03:00
|
|
|
#ifndef lint
|
1998-07-26 18:13:00 +04:00
|
|
|
__RCSID("$NetBSD: infinity.c,v 1.3 1998/07/26 14:14:15 mycroft Exp $");
|
1993-10-07 03:17:24 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
/* infinity.c */
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
/* bytes for +Infinity on a 387 */
|
1998-07-26 18:13:00 +04:00
|
|
|
const char __infinity[] = { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f };
|