diff options
author | Nicolas Boulenguez <nicolas.boulenguez@free.fr> | 2012-02-17 17:44:38 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-02-17 17:44:38 +0000 |
commit | cc6e48bc7c8e7a349147d5ce7683591175134076 (patch) | |
tree | c2df9fa3e01548be4bebf1736d1040ce8405765d /manual/arith.texi | |
parent | 6dd8f3dca0dacac90815a8776142bd28ba59513e (diff) | |
download | glibc-cc6e48bc7c8e7a349147d5ce7683591175134076.tar glibc-cc6e48bc7c8e7a349147d5ce7683591175134076.tar.gz glibc-cc6e48bc7c8e7a349147d5ce7683591175134076.tar.bz2 glibc-cc6e48bc7c8e7a349147d5ce7683591175134076.zip |
Fix various problems with @deftypefun lines.
Diffstat (limited to 'manual/arith.texi')
-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 1b8a8c3d68..c5795c2ed8 100644 --- a/manual/arith.texi +++ b/manual/arith.texi @@ -1264,26 +1264,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 n) +@deftypefun {long long int} scalbn (double @var{x}, int @var{n}) @comment math.h @comment BSD -@deftypefunx {long long int} scalbnf (float @var{x}, int n) +@deftypefunx {long long int} scalbnf (float @var{x}, int @var{n}) @comment math.h @comment BSD -@deftypefunx {long long int} scalbnl (long double @var{x}, int n) +@deftypefunx {long long int} 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 n) +@deftypefun {long long int} scalbln (double @var{x}, long int @var{n}) @comment math.h @comment BSD -@deftypefunx {long long int} scalblnf (float @var{x}, long int n) +@deftypefunx {long long int} scalblnf (float @var{x}, long int @var{n}) @comment math.h @comment BSD -@deftypefunx {long long int} scalblnl (long double @var{x}, long int n) +@deftypefunx {long long int} 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 |