diff options
author | Mark H Weaver <mhw@netris.org> | 2013-03-24 19:52:10 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2013-03-24 19:52:10 -0400 |
commit | 9ad027fb30f8b4d07dbf103a245bfb1c73394897 (patch) | |
tree | e7495848297ad5deabf9faa8a16a239b0bc4e63c /manual | |
parent | eb66fd21bf0689fb86469c81d5a2c7db7d1ec9fa (diff) | |
download | glibc-9ad027fb30f8b4d07dbf103a245bfb1c73394897.tar.gz glibc-9ad027fb30f8b4d07dbf103a245bfb1c73394897.tar.xz glibc-9ad027fb30f8b4d07dbf103a245bfb1c73394897.zip |
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')
-rw-r--r-- | manual/arith.texi | 12 |
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 |