diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2000-10-26 11:59:59 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2000-10-26 11:59:59 +0000 |
commit | da4b19c01ec0e27d42071d294e29fc56e1a1b16a (patch) | |
tree | 393496f9c6cc54d9bcde0fc0d77691fdcfdf255a /set_prc_raw.c | |
parent | 33336e9a85f1ae242191e1b2286cded95f11362b (diff) | |
download | mpfr-da4b19c01ec0e27d42071d294e29fc56e1a1b16a.tar.gz |
protected all macros: xxx -> MPFR_xxx
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@786 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'set_prc_raw.c')
-rw-r--r-- | set_prc_raw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/set_prc_raw.c b/set_prc_raw.c index 8ae4fd636..a0be55303 100644 --- a/set_prc_raw.c +++ b/set_prc_raw.c @@ -37,12 +37,12 @@ mpfr_set_prec_raw (x, p) fprintf(stderr, "*** cannot set precision to 0 bits\n"); exit(1); } - if (p > ABSSIZE(x) * BITS_PER_MP_LIMB) { + if (p > MPFR_ABSSIZE(x) * BITS_PER_MP_LIMB) { fprintf(stderr, "*** precision too large for allocated space\n"); exit(1); } - PREC(x) = p; + MPFR_PREC(x) = p; } |