summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2021-02-15 13:41:44 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2021-02-15 13:41:44 +0000
commit5024980fea4e2cc196cc02a6e3b88e9c3d313fa6 (patch)
treea6e651b74fa2b5e3ecf7cd813b3ae8ab4df2cb90 /doc
parent3026cba98c77c1153f1936083d90b2baa955f586 (diff)
downloadmpfr-5024980fea4e2cc196cc02a6e3b88e9c3d313fa6.tar.gz
renamed mpfr_compound to mpfr_compound_si, since in C2X, compoundn takes
an intmax_t and not a long, thus we can later implement mpfr_compoundn taking as input an intmax_t git-svn-id: https://scm.gforge.inria.fr/anonscm/svn/mpfr/trunk@14429 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'doc')
-rw-r--r--doc/mpfr.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/mpfr.texi b/doc/mpfr.texi
index ce42c5cc1..424997714 100644
--- a/doc/mpfr.texi
+++ b/doc/mpfr.texi
@@ -2283,7 +2283,7 @@ We do not use the usual limit rules in this case, as these rules are not
used for @code{pow}.
@end deftypefun
-@deftypefun int mpfr_compound (mpfr_t @var{rop}, mpfr_t @var{op}, long int @var{n}, mpfr_rnd_t @var{rnd})
+@deftypefun int mpfr_compound_si (mpfr_t @var{rop}, mpfr_t @var{op}, long int @var{n}, mpfr_rnd_t @var{rnd})
Set @var{rop} to the power @var{n} of one plus @var{op},
following IEEE@tie{}754 for the special cases and exceptions.
When @var{n} is zero and @var{op} is NaN or greater or equal to @minus{}1,
@@ -4183,7 +4183,7 @@ that were added after MPFR@tie{}2.2, and in which MPFR version.
@item @code{mpfr_cmpabs_ui} in MPFR@tie{}4.1.
-@item @code{mpfr_compound} in MPFR@tie{}4.2.
+@item @code{mpfr_compound_si} in MPFR@tie{}4.2.
@item @code{mpfr_copysign} in MPFR@tie{}2.3.
Note: MPFR@tie{}2.2 had a @code{mpfr_copysign} function that was available,