1 /* $NetBSD: nanf.c,v 1.2 2002/01/21 23:54:45 ross Exp $ */ 2 3 #include <sys/cdefs.h> 4 #ifndef lint 5 __RCSID("$NetBSD: nanf.c,v 1.2 2002/01/21 23:54:45 ross Exp $"); 6 #endif /* not lint */ 7 8 /* nanf.c */ 9 10 #include <math.h> 11 12 /* bytes for quiet NaN on an Alpha (IEEE single precision) */ 13 const char __nanf[] __attribute__((__aligned__(__alignof__(float)))) = { 14 0, 0, (char)0xc0, 0x7f 15 }; 16