diff options
author | das <das@FreeBSD.org> | 2009-01-28 04:36:34 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2009-01-28 04:36:34 +0000 |
commit | 1dd1bae7b6975b8f90638d416af36744406345b4 (patch) | |
tree | c4d28a7b5d5d1902de89c3a33988ed7f5638277b /contrib/gdtoa/strtopf.c | |
parent | 0ae48d48ab38ccf64f5cda7e2bc3a30aa4b7c4c2 (diff) | |
parent | 5606fb59f1820207cf2c2c8709586e36f114a8f7 (diff) | |
download | FreeBSD-src-1dd1bae7b6975b8f90638d416af36744406345b4.zip FreeBSD-src-1dd1bae7b6975b8f90638d416af36744406345b4.tar.gz |
Vendor import of gdtoa 20081205.
Diffstat (limited to 'contrib/gdtoa/strtopf.c')
-rw-r--r-- | contrib/gdtoa/strtopf.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/contrib/gdtoa/strtopf.c b/contrib/gdtoa/strtopf.c index cc7c970..74694a0 100644 --- a/contrib/gdtoa/strtopf.c +++ b/contrib/gdtoa/strtopf.c @@ -38,12 +38,17 @@ strtopf(s, sp, f) CONST char *s; char **sp; float *f; strtopf(CONST char *s, char **sp, float *f) #endif { - static FPI fpi = { 24, 1-127-24+1, 254-127-24+1, 1, SI }; + static FPI fpi0 = { 24, 1-127-24+1, 254-127-24+1, 1, SI }; ULong bits[1], *L; Long exp; int k; +#ifdef Honor_FLT_ROUNDS +#include "gdtoa_fltrnds.h" +#else +#define fpi &fpi0 +#endif - k = strtodg(s, sp, &fpi, &exp, bits); + k = strtodg(s, sp, fpi, &exp, bits); L = (ULong*)f; switch(k & STRTOG_Retmask) { case STRTOG_NoNumber: |