1 /* $NetBSD: nanf.c,v 1.1 2000/12/29 20:13:50 bjh21 Exp $ */ 2 3 #include <sys/cdefs.h> 4 #ifndef lint 5 __RCSID("$NetBSD: nanf.c,v 1.1 2000/12/29 20:13:50 bjh21 Exp $"); 6 #endif /* not lint */ 7 8 /* nanf.c */ 9 10 #include <math.h> 11 12 /* bytes for quiet NaN on an arm32 (IEEE single precision) */ 13 const char __nanf[] __attribute__((__aligned__(4))) = { 0, 0, (char)0xc0, 0x7f }; 14