1 /* $OpenBSD: nan.c,v 1.1 2008/07/24 09:31:06 martynas Exp $ */
2
3 /* Written by Martynas Venckus. Public Domain. */
4
5 #include <math.h>
6
7 /* bytes for qNaN on a hppa (IEEE single format) */
8 char __nan[] __attribute__((__aligned__(sizeof(float)))) =
9 { 0x7f, 0xa0, 0, 0 };
10