equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 1999-2000 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of the License "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 /* This is a dummy file for core code. These values are |
|
19 based on NT limitation. These should be change according to |
|
20 to porting platform, if the platform does not have a float.h file |
|
21 */ |
|
22 #ifndef _FLOAT_H_ |
|
23 #define _FLOAT_H_ |
|
24 |
|
25 #define FLT_MAX 3.402823466e+38F /* max value from NT */ |
|
26 #define FLT_MIN 1.175494351e-38F /* min positive value from NT */ |
|
27 #define FLT_DIG 6 |
|
28 #define FLT_MAX_10_EXP 38 |
|
29 #define FLT_MIN_10_EXP -37 |
|
30 |
|
31 #endif /*_FLOAT_H_*/ |