/* Copyright (C) 1995 Eddie C. Dost This file is part of the HP48 C Library. The HP48 C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. The HP48 C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. */ #ifndef _FLOAT_H___ #define _FLOAT_H___ #define FLT_RADIX 10 #define FLT_MANT_DIG 12 #define FLT_DIG 12 #define FLT_ROUNDS 1 #define FLT_EPSILON 1.00000000000e-011F #define FLT_MIN_EXP (-500) #define FLT_MIN 1.00000000000e-499F #define FLT_MIN_10_EXP (-499) #define FLT_MAX_EXP 500 #define FLT_MAX 9.99999999999e+499F #define FLT_MAX_10_EXP 499 #define DBL_RADIX 10 #define DBL_MANT_DIG 12 #define DBL_DIG 12 #define DBL_ROUNDS 1 #define DBL_EPSILON 1.00000000000e-011 #define DBL_MIN_EXP (-500) #define DBL_MIN 1.00000000000e-499 #define DBL_MIN_10_EXP (-499) #define DBL_MAX_EXP 500 #define DBL_MAX 9.99999999999e+499 #define DBL_MAX_10_EXP 499 #define LDBL_MANT_DIG 15 #define LDBL_DIG 15 #define LDBL_EPSILON 1.00000000000000e-14L #define LDBL_MIN_EXP (-50000) #define LDBL_MIN 1.00000000000000e-49999L #define LDBL_MIN_10_EXP (-49999) #define LDBL_MAX_EXP 50000 #define LDBL_MAXi 9.99999999999999e+49999L #define LDBL_MAX_10_EXP 49999 #endif /* _FLOAT_H___ */