Expand PMF_FN_* macros.
[netbsd-mini2440.git] / lib / libc / arch / powerpc64 / gen / nanf.c
blobb2936dad6d703696f76afaad9b5a863e435dc6ee
1 /* $NetBSD: nanf.c,v 1.1 2006/07/01 16:37:20 ross Exp $ */
3 #include <sys/cdefs.h>
4 #if defined(LIBC_SCCS) && !defined(lint)
5 __RCSID("$NetBSD: nanf.c,v 1.1 2006/07/01 16:37:20 ross Exp $");
6 #endif /* LIBC_SCCS and not lint */
8 #include <math.h>
9 #include <machine/endian.h>
11 /* bytes for quiet NaN (IEEE single precision) */
12 const union __float_u __nanf =
13 { { 0x7f, 0xc0, 0, 0 } };
15 __warn_references(__nanf, "warning: <math.h> defines NAN incorrectly for your compiler.")