diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2017-12-13 17:25:07 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2017-12-13 17:25:07 +0000 |
commit | 03fbd4554665938ed0dbf9f2c157dc704a62281e (patch) | |
tree | f5f4d278a10d4787b8d62bf6c8bad71507e94de0 | |
parent | 4d6664e2fa239c62e54390deaa1e2e5cc34a3ea5 (diff) | |
download | mpfr-03fbd4554665938ed0dbf9f2c157dc704a62281e.tar.gz |
[src/mpf2mpfr.h] missing mpf_inits/mpf_clears
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@11972 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r-- | src/mpf2mpfr.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mpf2mpfr.h b/src/mpf2mpfr.h index a6231cff8..27abce49a 100644 --- a/src/mpf2mpfr.h +++ b/src/mpf2mpfr.h @@ -39,6 +39,11 @@ http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc., #undef mpf_init2 #define mpf_init2(x,p) (mpfr_init2((x),(p)), mpfr_set_ui ((x), 0, MPFR_DEFAULT_RND)) +#undef mpf_inits +#define mpf_inits mpfr_inits +#undef mpf_clears +#define mpf_clears mpfr_clears + /* functions which don't take as argument the rounding mode */ #undef mpf_ceil #define mpf_ceil mpfr_ceil |