xref: /netbsd-src/lib/libc/arch/vax/gen/infinityf.c (revision 924795e69c8bb3f17afd8fcbb799710cc1719dc4)
1 /*	$NetBSD: infinityf.c,v 1.1 2003/10/25 22:31:20 kleink Exp $	*/
2 
3 /*
4  * infinityf.c - max. value representable in VAX F_floating  -- public domain.
5  * This is _not_ infinity.
6  */
7 
8 #include <math.h>
9 
10 const union __float_u __infinityf =
11 	{ { 0xff, 0x7f, 0xff, 0xff } };
12