From: Alexandre Oliva Date: Fri, 14 Mar 2003 05:48:18 +0000 (+0000) Subject: * include/gmp.h: Include/gmp-mparam.h. * stdlib/strtod.c: Include gmp-mparam.h before... X-Git-Tag: cvs/glibc-2_3_3~1250 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3be9dc8e1471fcf5f461d31e8492d14046ab26c3;p=thirdparty%2Fglibc.git * include/gmp.h: Include/gmp-mparam.h. * stdlib/strtod.c: Include gmp-mparam.h before gmp.h and gmp-impl.h. * include/gmp.h: Include/gmp-mparam.h. * stdlib/strtod.c: Include gmp-mparam.h before gmp.h and gmp-impl.h. 2003-03-14 Alexandre Oliva --- diff --git a/ChangeLog b/ChangeLog index 99241874787..0e2eb34e0ea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-03-14 Alexandre Oliva + + * include/gmp.h: Include/gmp-mparam.h. + * stdlib/strtod.c: Include gmp-mparam.h before gmp.h and + gmp-impl.h. + 2003-03-14 Alexandre Oliva * elf/dl-conflict.c: Don't compile _dl_resolve_conflicts if diff --git a/include/gmp.h b/include/gmp.h index ff26658d936..b74167097d9 100644 --- a/include/gmp.h +++ b/include/gmp.h @@ -1,3 +1,7 @@ +/* Include gmp-mparam.h first, such that definitions of _SHORT_LIMB + and _LONG_LONG_LIMB in it can take effect into gmp.h. */ +#include + #ifndef __GMP_H__ #include diff --git a/stdlib/strtod.c b/stdlib/strtod.c index ef74b3d9f58..820307a0ece 100644 --- a/stdlib/strtod.c +++ b/stdlib/strtod.c @@ -64,9 +64,11 @@ /* The gmp headers need some configuration frobs. */ #define HAVE_ALLOCA 1 +/* Include gmp-mparam.h first, such that definitions of _SHORT_LIMB + and _LONG_LONG_LIMB in it can take effect into gmp.h. */ +#include #include #include -#include #include #include "fpioconst.h"