diff options
author | hanrot <hanrot@280ebfd0-de03-0410-8827-d642c229c3f4> | 2000-12-15 11:05:55 +0000 |
---|---|---|
committer | hanrot <hanrot@280ebfd0-de03-0410-8827-d642c229c3f4> | 2000-12-15 11:05:55 +0000 |
commit | e02b7615fc6715baf1d9da6ed8ac6d6d4b79d671 (patch) | |
tree | 1c413a2b9e38a239b3e676a69c5f2e463865e63f /agm.c | |
parent | ddaeb016bab0a9f6e84a884df85f4859620bb7ef (diff) | |
download | mpfr-e02b7615fc6715baf1d9da6ed8ac6d6d4b79d671.tar.gz |
Permutation of includes to avoid warnings due to careless multiple definition
of ULONG_MAX.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@862 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'agm.c')
-rw-r--r-- | agm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,8 +22,8 @@ MA 02111-1307, USA. */ #include <stdio.h> #include <math.h> #include "gmp.h" -#include "gmp-impl.h" #include "mpfr.h" +#include "gmp-impl.h" /*Memory gestion */ #define MON_INIT(xp, x, p, s) xp = (mp_ptr) TMP_ALLOC(s*BYTES_PER_MP_LIMB); x -> _mp_prec = p; x -> _mp_d = xp; x -> _mp_size = s; x -> _mp_exp = 0; |