mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-25 14:30:06 +00:00
Fix docs for scalbn* and scalbl* functions
* manual/arith.texi (Normalization Functions): Fix prototypes for scalbn, scalbnf, scalbnl, scalbln, scalblnf, and scalblnl.
This commit is contained in:
parent
eb66fd21bf
commit
9ad027fb30
@ -1,3 +1,8 @@
|
||||
2013-03-24 Mark H Weaver <mhw@netris.org>
|
||||
|
||||
* manual/arith.texi (Normalization Functions): Fix prototypes for
|
||||
scalbn, scalbnf, scalbnl, scalbln, scalblnf, and scalblnl.
|
||||
|
||||
2013-03-19 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
|
||||
|
||||
[BZ #13889]
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user