diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2000-04-19 14:45:27 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2000-04-19 14:45:27 +0000 |
commit | ad865b9563132edc613addcdb3e807af6f909787 (patch) | |
tree | aa5790fc9cdbafe2bb1f189a0579044eb5198c13 /div_ui.c | |
parent | 12a6f6627718996abb315e8c55113871f9a9c724 (diff) | |
download | mpfr-ad865b9563132edc613addcdb3e807af6f909787.tar.gz |
swapped gmp-impl.h and longlong.h for GMP 3.0
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@489 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'div_ui.c')
-rw-r--r-- | div_ui.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -21,10 +21,15 @@ MA 02111-1307, USA. */ #include <stdio.h> #include "gmp.h" +#ifdef GMP2 /* longlong.h has to come before gmp-impl.h, otherwise UDIV_NEEDS_NORMALIZATION is wrongly defined */ #include "longlong.h" #include "gmp-impl.h" +#else +#include "gmp-impl.h" +#include "longlong.h" +#endif #include "mpfr.h" /* #define DEBUG */ |