xref: /netbsd-src/lib/libc/arch/arm/gen/nanf.c (revision 1ca5c1b28139779176bd5c13ad7c5f25c0bcd5f8)
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