2 |
7u83 |
1 |
/*
|
|
|
2 |
Crown Copyright (c) 1997
|
|
|
3 |
|
|
|
4 |
This TenDRA(r) Computer Program is subject to Copyright
|
|
|
5 |
owned by the United Kingdom Secretary of State for Defence
|
|
|
6 |
acting through the Defence Evaluation and Research Agency
|
|
|
7 |
(DERA). It is made available to Recipients with a
|
|
|
8 |
royalty-free licence for its use, reproduction, transfer
|
|
|
9 |
to other parties and amendment for any purpose not excluding
|
|
|
10 |
product development provided that any such use et cetera
|
|
|
11 |
shall be deemed to be acceptance of the following conditions:-
|
|
|
12 |
|
|
|
13 |
(1) Its Recipients shall ensure that this Notice is
|
|
|
14 |
reproduced upon any copies or amended versions of it;
|
|
|
15 |
|
|
|
16 |
(2) Any amended version of it shall be clearly marked to
|
|
|
17 |
show both the nature of and the organisation responsible
|
|
|
18 |
for the relevant amendment or amendments;
|
|
|
19 |
|
|
|
20 |
(3) Its onward transfer from a recipient to another
|
|
|
21 |
party shall be deemed to be that party's acceptance of
|
|
|
22 |
these conditions;
|
|
|
23 |
|
|
|
24 |
(4) DERA gives no warranty or assurance as to its
|
|
|
25 |
quality or suitability for any purpose and DERA accepts
|
|
|
26 |
no liability whatsoever in relation to any use to which
|
|
|
27 |
it may be put.
|
|
|
28 |
*/
|
|
|
29 |
/*
|
|
|
30 |
REPLACEMENT FLOAT HEADER FOR sunos/sparc
|
|
|
31 |
|
|
|
32 |
The system does not provide a float.h header, so this is provided in its
|
|
|
33 |
place.
|
|
|
34 |
*/
|
|
|
35 |
|
|
|
36 |
#ifndef __float_h
|
|
|
37 |
#define __float_h
|
|
|
38 |
|
|
|
39 |
#define FLT_RADIX 2
|
|
|
40 |
#define FLT_MANT_DIG 24
|
|
|
41 |
#define FLT_DIG 6
|
|
|
42 |
#define FLT_ROUNDS 1
|
|
|
43 |
#define FLT_MIN_EXP (-125)
|
|
|
44 |
#define FLT_MIN_10_EXP (-37)
|
|
|
45 |
#define FLT_MAX_EXP 128
|
|
|
46 |
#define FLT_MAX_10_EXP 38
|
|
|
47 |
|
|
|
48 |
#ifdef __STDC__
|
|
|
49 |
#define FLT_EPSILON 1.19209290e-07F
|
|
|
50 |
#define FLT_MIN 1.17549435e-38F
|
|
|
51 |
#define FLT_MAX 3.40282347e+38F
|
|
|
52 |
#else
|
|
|
53 |
#define FLT_EPSILON 1.19209290e-07
|
|
|
54 |
#define FLT_MIN 1.17549435e-38
|
|
|
55 |
#define FLT_MAX 3.40282347e+38
|
|
|
56 |
#endif
|
|
|
57 |
|
|
|
58 |
#define DBL_MANT_DIG 53
|
|
|
59 |
#define DBL_DIG 15
|
|
|
60 |
#define DBL_EPSILON 2.2204460492503131e-16
|
|
|
61 |
#define DBL_MIN_EXP (-1021)
|
|
|
62 |
#define DBL_MIN 2.2250738585072014e-308
|
|
|
63 |
#define DBL_MIN_10_EXP (-307)
|
|
|
64 |
#define DBL_MAX_EXP 1024
|
|
|
65 |
#define DBL_MAX 1.7976931348623157e+308
|
|
|
66 |
#define DBL_MAX_10_EXP 308
|
|
|
67 |
|
|
|
68 |
#define LDBL_MANT_DIG DBL_MANT_DIG
|
|
|
69 |
#define LDBL_DIG DBL_DIG
|
|
|
70 |
#define LDBL_EPSILON DBL_EPSILON
|
|
|
71 |
#define LDBL_MIN DBL_MIN
|
|
|
72 |
#define LDBL_MIN_EXP DBL_MIN_EXP
|
|
|
73 |
#define LDBL_MIN_10_EXP DBL_MIN_10_EXP
|
|
|
74 |
#define LDBL_MAX DBL_MAX
|
|
|
75 |
#define LDBL_MAX_EXP DBL_MAX_EXP
|
|
|
76 |
#define LDBL_MAX_10_EXP DBL_MAX_10_EXP
|
|
|
77 |
|
|
|
78 |
#endif
|