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