diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-01-18 07:59:22 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-01-18 07:59:22 +0000 |
commit | 8118b1b3be31a537d3c5f622f817a75a10c27741 (patch) | |
tree | 47d6eff7889e729dd603f80f5cd817c3386723ae /Build/source/utils/pmx/pmx-2.6.19/libf2c/fp.h | |
parent | bd904730c4c0f4e593cb97725f11eaf36ec72162 (diff) |
pmx 2.6.19
git-svn-id: svn://tug.org/texlive/trunk@28859 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/pmx/pmx-2.6.19/libf2c/fp.h')
-rw-r--r-- | Build/source/utils/pmx/pmx-2.6.19/libf2c/fp.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Build/source/utils/pmx/pmx-2.6.19/libf2c/fp.h b/Build/source/utils/pmx/pmx-2.6.19/libf2c/fp.h new file mode 100644 index 00000000000..40743d79f74 --- /dev/null +++ b/Build/source/utils/pmx/pmx-2.6.19/libf2c/fp.h @@ -0,0 +1,28 @@ +#define FMAX 40 +#define EXPMAXDIGS 8 +#define EXPMAX 99999999 +/* FMAX = max number of nonzero digits passed to atof() */ +/* EXPMAX = 10^EXPMAXDIGS - 1 = largest allowed exponent absolute value */ + +#ifdef V10 /* Research Tenth-Edition Unix */ +#include "local.h" +#endif + +/* MAXFRACDIGS and MAXINTDIGS are for wrt_F -- bounds (not necessarily + tight) on the maximum number of digits to the right and left of + * the decimal point. + */ + +#ifdef VAX +#define MAXFRACDIGS 56 +#define MAXINTDIGS 38 +#else +#ifdef CRAY +#define MAXFRACDIGS 9880 +#define MAXINTDIGS 9864 +#else +/* values that suffice for IEEE double */ +#define MAXFRACDIGS 344 +#define MAXINTDIGS 308 +#endif +#endif |