Home | History | Annotate | Line # | Download | only in gen
      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