blob: 7b72e158c2a38413cbcd1672f6b485e52efacfec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- src/double.h.orig Sat Sep 29 03:12:19 2001
+++ src/double.h Tue Feb 12 20:28:29 2002
@@ -61,6 +61,8 @@
#ifndef double_INCLUDED
#define double_INCLUDED
+#include <sys/param.h>
+
#include "platform.h"
#include "long.h"
@@ -112,7 +114,9 @@
POS_ZERO = 0x00000000, // 0.0
NEG_INF = 0xFF800000, // -Inf
POS_INF = 0x7F800000, // +Inf
+#if !(defined(BSD) && BSD >= 199506)
NAN = 0x7FC00000, // canonical NaN
+#endif
BYTE_MASK = 0x000000FF, // mask off least significant byte
MAX_INT = 0x7FFFFFFF, // maximum integer
MIN_INT = 0x80000000, // minimum integer
|