diff options
| author | Vincent Lefevre <vincent@vinc17.net> | 2025-07-12 23:05:00 +0200 |
|---|---|---|
| committer | Alejandro Colomar <alx@kernel.org> | 2025-07-19 23:29:26 +0200 |
| commit | 591706b2909c17d614161bdb5568dd260809db27 (patch) | |
| tree | ed0aaa7dcf55f4c32a707cee3ecc391399b1d63e /man/man3/scalbln.3 | |
| parent | 93d7685f3f72bd694a6fc2d2bcb62ebb54fbeb18 (diff) | |
| download | man-pages-591706b2909c17d614161bdb5568dd260809db27.tar.gz | |
man/: Replace reserved exp identifier
Since exp is a library function, this is a reserved identifier, which
should not be used as a variable name / parameter.
Signed-off-by: Vincent Lefevre <vincent@vinc17.net>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to 'man/man3/scalbln.3')
| -rw-r--r-- | man/man3/scalbln.3 | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/man/man3/scalbln.3 b/man/man3/scalbln.3 index e14c1be259..1981fdb40d 100644 --- a/man/man3/scalbln.3 +++ b/man/man3/scalbln.3 @@ -14,13 +14,13 @@ Math library .nf .B #include <math.h> .P -.BI "double scalbln(double " x ", long " exp ); -.BI "float scalblnf(float " x ", long " exp ); -.BI "long double scalblnl(long double " x ", long " exp ); +.BI "double scalbln(double " x ", long " e ); +.BI "float scalblnf(float " x ", long " e ); +.BI "long double scalblnl(long double " x ", long " e ); .P -.BI "double scalbn(double " x ", int " exp ); -.BI "float scalbnf(float " x ", int " exp ); -.BI "long double scalbnl(long double " x ", int " exp ); +.BI "double scalbn(double " x ", int " e ); +.BI "float scalbnf(float " x ", int " e ); +.BI "long double scalbnl(long double " x ", int " e ); .fi .P .RS -4 @@ -51,11 +51,11 @@ by .B FLT_RADIX (probably 2) to the power of -.IR exp , +.IR e , that is: .P .nf - x * FLT_RADIX ** exp + x * FLT_RADIX ** e .fi .P The definition of @@ -69,7 +69,7 @@ On success, these functions return * .B FLT_RADIX ** -.IR exp . +.IR e . .P If .I x |
