b6cbf7203b
This patch imports the unmodified current version of NetBSD libc. The NetBSD includes are in /nbsd_include, while the libc code itself is split between lib/nbsd_libc and common/lib/libc.
11 lines
269 B
C
11 lines
269 B
C
/* $NetBSD: infinityf.c,v 1.1 2003/10/25 22:31:20 kleink Exp $ */
|
|
|
|
/*
|
|
* infinityf.c - max. value representable in VAX F_floating -- public domain.
|
|
* This is _not_ infinity.
|
|
*/
|
|
|
|
#include <math.h>
|
|
|
|
const union __float_u __infinityf =
|
|
{ { 0xff, 0x7f, 0xff, 0xff } };
|