summaryrefslogtreecommitdiff
path: root/manual/arith.texi
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2013-03-24 19:52:10 -0400
committerMark H Weaver <mhw@netris.org>2013-03-24 19:52:10 -0400
commit9ad027fb30f8b4d07dbf103a245bfb1c73394897 (patch)
treee7495848297ad5deabf9faa8a16a239b0bc4e63c /manual/arith.texi
parenteb66fd21bf0689fb86469c81d5a2c7db7d1ec9fa (diff)
Fix docs for scalbn* and scalbl* functions
* manual/arith.texi (Normalization Functions): Fix prototypes for scalbn, scalbnf, scalbnl, scalbln, scalblnf, and scalblnl.
Diffstat (limited to 'manual/arith.texi')
-rw-r--r--manual/arith.texi12
1 files changed, 6 insertions, 6 deletions
diff --git a/manual/arith.texi b/manual/arith.texi
index faf25cc42a..d060ff9463 100644
--- a/manual/arith.texi
+++ b/manual/arith.texi
@@ -1260,26 +1260,26 @@ The @code{scalb} function is the BSD name for @code{ldexp}.
@comment math.h
@comment BSD
-@deftypefun {long long int} scalbn (double @var{x}, int @var{n})
+@deftypefun double scalbn (double @var{x}, int @var{n})
@comment math.h
@comment BSD
-@deftypefunx {long long int} scalbnf (float @var{x}, int @var{n})
+@deftypefunx float scalbnf (float @var{x}, int @var{n})
@comment math.h
@comment BSD
-@deftypefunx {long long int} scalbnl (long double @var{x}, int @var{n})
+@deftypefunx {long double} scalbnl (long double @var{x}, int @var{n})
@code{scalbn} is identical to @code{scalb}, except that the exponent
@var{n} is an @code{int} instead of a floating-point number.
@end deftypefun
@comment math.h
@comment BSD
-@deftypefun {long long int} scalbln (double @var{x}, long int @var{n})
+@deftypefun double scalbln (double @var{x}, long int @var{n})
@comment math.h
@comment BSD
-@deftypefunx {long long int} scalblnf (float @var{x}, long int @var{n})
+@deftypefunx float scalblnf (float @var{x}, long int @var{n})
@comment math.h
@comment BSD
-@deftypefunx {long long int} scalblnl (long double @var{x}, long int @var{n})
+@deftypefunx {long double} scalblnl (long double @var{x}, long int @var{n})
@code{scalbln} is identical to @code{scalb}, except that the exponent
@var{n} is a @code{long int} instead of a floating-point number.
@end deftypefun