mirror of
https://github.com/corda/corda.git
synced 2025-01-09 14:33:30 +00:00
10 lines
280 B
C
10 lines
280 B
C
|
/* $OpenBSD: nan.c,v 1.1 2008/07/24 09:31:06 martynas Exp $ */
|
||
|
|
||
|
/* Written by Martynas Venckus. Public Domain. */
|
||
|
|
||
|
#include <math.h>
|
||
|
|
||
|
/* bytes for qNaN on an i386/amd64 (IEEE single format) */
|
||
|
char __nan[] __attribute__((__aligned__(sizeof(float)))) =
|
||
|
{ 0, 0, 0xc0, 0x7f };
|