repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove building with NOCRYPTO option
[minix.git]
/
lib
/
libc
/
arch
/
arm
/
gdtoa
/
gd_qnan.h
blob
9554f4991a3300446e47bd46c14f0514dca5250d
1
/* $NetBSD: gd_qnan.h,v 1.1 2006/01/25 15:33:28 kleink Exp $ */
2
3
#include <machine/endian.h>
4
5
#define f_QNAN 0x7fc00000
6
#if BYTE_ORDER == BIG_ENDIAN
7
#define d_QNAN0 0x7ff80000
8
#define d_QNAN1 0x0
9
#else
10
#define d_QNAN0 0x0
11
#define d_QNAN1 0x7ff80000
12
#endif