blob: 431df4302f7aa70aee85024d122ec1c1cf6f76de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* $OpenBSD: nan.c,v 1.3 2014/07/21 01:51:10 guenther Exp $ */
/* Written by Martynas Venckus. Public Domain. */
#include <endian.h>
#include <math.h>
/* bytes for qNaN on a mips64 (IEEE single format) */
char __nan[] __attribute__((__aligned__(sizeof(float)))) =
#if BYTE_ORDER == BIG_ENDIAN
{ 0x7f, 0xc0, 0, 0 };
#else /* BYTE_ORDER == BIG_ENDIAN */
{ 0, 0, 0xc0, 0x7f };
#endif /* BYTE_ORDER == BIG_ENDIAN */
|