nanf.c revision 1.1
1/*	$NetBSD: nanf.c,v 1.1 1999/12/23 10:15:09 kleink Exp $	*/
2
3#include <sys/cdefs.h>
4#if defined(LIBC_SCCS) && !defined(lint)
5__RCSID("$NetBSD: nanf.c,v 1.1 1999/12/23 10:15:09 kleink Exp $");
6#endif /* LIBC_SCCS and not lint */
7
8/* nanf.c */
9
10#include <math.h>
11
12/* bytes for quiet NaN on a PowerPC (IEEE single precision) */
13const char __nanf[] = { 0x7f, (char)0xc0, 0, 0 };
14