aboutsummaryrefslogtreecommitdiffstats
path: root/man/man3/scalbln.3
diff options
context:
space:
mode:
authorVincent Lefevre <vincent@vinc17.net>2025-07-12 23:05:00 +0200
committerAlejandro Colomar <alx@kernel.org>2025-07-19 23:29:26 +0200
commit591706b2909c17d614161bdb5568dd260809db27 (patch)
treeed0aaa7dcf55f4c32a707cee3ecc391399b1d63e /man/man3/scalbln.3
parent93d7685f3f72bd694a6fc2d2bcb62ebb54fbeb18 (diff)
downloadman-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.318
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