Home | History | Annotate | Line # | Download | only in gen
nanf.c revision 1.1
      1 /*	$NetBSD: nanf.c,v 1.1 2001/06/19 00:25:03 fvdl Exp $	*/
      2 
      3 #include <sys/cdefs.h>
      4 #ifndef lint
      5 __RCSID("$NetBSD: nanf.c,v 1.1 2001/06/19 00:25:03 fvdl Exp $");
      6 #endif /* not lint */
      7 
      8 /* nanf.c */
      9 
     10 #include <math.h>
     11 
     12 /* bytes for quiet NaN on a 387 (IEEE single precision) */
     13 const char __nanf[] = { 0, 0, (char)0xc0, 0x7f };
     14