Skip to content

Commit ce680d9

Browse files
committed
fixup: minor transcription mistakes
1 parent 24e0be2 commit ce680d9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

source/lib-intro.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
Equivalently, a call to a C standard library function is
158158
a non-constant library call
159159
if \tcode{errno} is set
160-
when math \tcode{errhandling \& MATH ERRNO} is \tcode{true}.
160+
when \tcode{math_errhandling \& MATH_ERRNO} is \tcode{true}.
161161
\end{note}
162162

163163
\rSec1[description]{Method of description}

source/numerics.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9677,11 +9677,11 @@
96779677
constexpr float ceilf(float x);
96789678
constexpr long double ceill(long double x);
96799679

9680-
float floor(float x); // see \ref{library.c}
9681-
double floor(double x);
9682-
long double floor(long double x); // see \ref{library.c}
9683-
float floorf(float x);
9684-
long double floorl(long double x);
9680+
constexpr float floor(float x); // see \ref{library.c}
9681+
constexpr double floor(double x);
9682+
constexpr long double floor(long double x); // see \ref{library.c}
9683+
constexpr float floorf(float x);
9684+
constexpr long double floorl(long double x);
96859685

96869686
float nearbyint(float x); // see \ref{library.c}
96879687
double nearbyint(double x);

0 commit comments

Comments
 (0)