diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-24 04:52:22 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-24 04:52:22 +0000 |
commit | 3d08cd331c1adcf0d917392f7e527b3f00511748 (patch) | |
tree | 312f0d1e1632f48862f044b8bb87e602dcffb5f9 /man3/significand.3 | |
parent | Adding debian version 6.7-2. (diff) | |
download | manpages-3d08cd331c1adcf0d917392f7e527b3f00511748.tar.xz manpages-3d08cd331c1adcf0d917392f7e527b3f00511748.zip |
Merging upstream version 6.8.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'man3/significand.3')
-rw-r--r-- | man3/significand.3 | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/man3/significand.3 b/man3/significand.3 deleted file mode 100644 index dbd6f7b..0000000 --- a/man3/significand.3 +++ /dev/null @@ -1,78 +0,0 @@ -'\" t -.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de) -.\" -.\" SPDX-License-Identifier: GPL-1.0-or-later -.\" -.\" heavily based on glibc infopages, copyright Free Software Foundation -.\" -.TH significand 3 2024-03-12 "Linux man-pages 6.7" -.SH NAME -significand, significandf, significandl \- -get mantissa of floating-point number -.SH LIBRARY -Math library -.RI ( libm ", " \-lm ) -.SH SYNOPSIS -.nf -.B #include <math.h> -.P -.BI "double significand(double " x ); -.BI "float significandf(float " x ); -.BI "long double significandl(long double " x ); -.fi -.P -.RS -4 -Feature Test Macro Requirements for glibc (see -.BR feature_test_macros (7)): -.RE -.P -.BR significand (), -.BR significandf (), -.BR significandl (): -.nf - /* Since glibc 2.19: */ _DEFAULT_SOURCE - || /* glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE -.fi -.SH DESCRIPTION -These functions return the mantissa of -.I x -scaled to the range -.RB [ 1 ,\~ FLT_RADIX ). -They are equivalent to -.P -.in +4n -.EX -scalb(x, (double) \-ilogb(x)) -.EE -.in -.P -This function exists mainly for use in certain standardized tests -for IEEE 754 conformance. -.SH ATTRIBUTES -For an explanation of the terms used in this section, see -.BR attributes (7). -.TS -allbox; -lbx lb lb -l l l. -Interface Attribute Value -T{ -.na -.nh -.BR significand (), -.BR significandf (), -.BR significandl () -T} Thread safety MT-Safe -.TE -.SH STANDARDS -None. -.TP -.BR significand () -BSD. -.SH HISTORY -.TP -.BR significand () -BSD. -.SH SEE ALSO -.BR ilogb (3), -.BR scalb (3) |