Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* 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  <aoliva@redhat.com>
  • Loading branch information
Alexandre Oliva committed Mar 14, 2003
1 parent a77dcec commit 3be9dc8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,3 +1,9 @@
2003-03-14 Alexandre Oliva <aoliva@redhat.com>

* 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 <aoliva@redhat.com>

* elf/dl-conflict.c: Don't compile _dl_resolve_conflicts if
Expand Down
4 changes: 4 additions & 0 deletions 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 <gmp-mparam.h>

#ifndef __GMP_H__

#include <stdlib/gmp.h>
Expand Down
4 changes: 3 additions & 1 deletion stdlib/strtod.c
Expand Up @@ -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 <gmp-mparam.h>
#include <gmp.h>
#include <gmp-impl.h>
#include <gmp-mparam.h>
#include <longlong.h>
#include "fpioconst.h"

Expand Down

0 comments on commit 3be9dc8

Please sign in to comment.