From: Kir Kolyshkin <kolyshkin@gmail.com>
To: Alejandro Colomar <alx@kernel.org>
Cc: Kir Kolyshkin <kolyshkin@gmail.com>, linux-man@vger.kernel.org
Subject: [PATCH 04/11] ceil.3,rint.3,round.3: rm NOTES section
Date: Sat, 15 Jun 2024 18:18:57 -0700 [thread overview]
Message-ID: <20240616011920.1627949-5-kolyshkin@gmail.com> (raw)
In-Reply-To: <20240616011920.1627949-1-kolyshkin@gmail.com>
Commit 4131356cd ("man*/, man-pages.7: VERSIONS, STANDARDS, HISTORY:
Reorganize sections") removed the NOTES section from floor(3), moving
the explanation of overflow errors to HISTORY.
The very same explanation is also there in ceil(3), rint(3), and
round(3). Let's move it to HISTORY as well, for uniformity.
Fixes: 4131356cd
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
---
man/man3/ceil.3 | 4 ++--
man/man3/rint.3 | 4 ++--
man/man3/round.3 | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/man/man3/ceil.3 b/man/man3/ceil.3
index 197920616..22d9e351f 100644
--- a/man/man3/ceil.3
+++ b/man/man3/ceil.3
@@ -53,7 +53,7 @@ .SH RETURN VALUE
itself is returned.
.SH ERRORS
No errors occur.
-POSIX.1-2001 documents a range error for overflows, but see NOTES.
+POSIX.1-2001 documents a range error for overflows, but see HISTORY.
.SH ATTRIBUTES
For an explanation of the terms used in this section, see
.BR attributes (7).
@@ -79,7 +79,7 @@ .SH HISTORY
.I double
also conforms to
SVr4, 4.3BSD, C89.
-.SH NOTES
+.P
SUSv2 and POSIX.1-2001 contain text about overflow (which might set
.I errno
to
diff --git a/man/man3/rint.3 b/man/man3/rint.3
index 262670571..8095e68ce 100644
--- a/man/man3/rint.3
+++ b/man/man3/rint.3
@@ -91,7 +91,7 @@ .SH RETURN VALUE
itself is returned.
.SH ERRORS
No errors occur.
-POSIX.1-2001 documents a range error for overflows, but see NOTES.
+POSIX.1-2001 documents a range error for overflows, but see HISTORY.
.SH ATTRIBUTES
For an explanation of the terms used in this section, see
.BR attributes (7).
@@ -115,7 +115,7 @@ .SH STANDARDS
C11, POSIX.1-2008.
.SH HISTORY
C99, POSIX.1-2001.
-.SH NOTES
+.P
SUSv2 and POSIX.1-2001 contain text about overflow (which might set
.I errno
to
diff --git a/man/man3/round.3 b/man/man3/round.3
index 268ec083c..1dd086e3c 100644
--- a/man/man3/round.3
+++ b/man/man3/round.3
@@ -56,7 +56,7 @@ .SH RETURN VALUE
itself is returned.
.SH ERRORS
No errors occur.
-POSIX.1-2001 documents a range error for overflows, but see NOTES.
+POSIX.1-2001 documents a range error for overflows, but see HISTORY.
.SH ATTRIBUTES
For an explanation of the terms used in this section, see
.BR attributes (7).
@@ -78,7 +78,7 @@ .SH STANDARDS
.SH HISTORY
glibc 2.1.
C99, POSIX.1-2001.
-.SH NOTES
+.P
POSIX.1-2001 contains text about overflow (which might set
.I errno
to
--
2.45.2
next prev parent reply other threads:[~2024-06-16 1:19 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-16 1:18 [PATCH 00/11] man3: fix wrong/non-existent section references Kir Kolyshkin
2024-06-16 1:18 ` [PATCH 01/11] exec.3: fix section reference Kir Kolyshkin
2024-06-16 1:18 ` [PATCH 02/11] posix_fallocate.3: fix section references Kir Kolyshkin
2024-06-16 1:18 ` [PATCH 03/11] floor.3: fix section reference Kir Kolyshkin
2024-06-16 10:07 ` Alejandro Colomar
2024-06-16 1:18 ` Kir Kolyshkin [this message]
2024-06-16 1:18 ` [PATCH 05/11] getdtablesize.3: " Kir Kolyshkin
2024-06-16 1:18 ` [PATCH 06/11] readdir.3: fix section references Kir Kolyshkin
2024-06-16 10:44 ` Alejandro Colomar
2024-06-16 20:13 ` [PATCH v2 06/11] readdir.3: fix wrong " Kir Kolyshkin
2024-06-16 1:19 ` [PATCH 07/11] setjmp.3: fix " Kir Kolyshkin
2024-06-16 10:47 ` Alejandro Colomar
2024-06-16 20:19 ` [PATCH v2 " Kir Kolyshkin
2024-06-16 20:43 ` Alejandro Colomar
2024-06-16 1:19 ` [PATCH 08/11] sigpause.3: fix section reference Kir Kolyshkin
2024-06-16 1:19 ` [PATCH 09/11] stailq.3: " Kir Kolyshkin
2024-06-16 1:19 ` [PATCH 10/11] strtok.3: " Kir Kolyshkin
2024-06-16 1:19 ` [PATCH 11/11] strtod.3: fix wrong " Kir Kolyshkin
2024-06-16 11:08 ` [PATCH 00/11] man3: fix wrong/non-existent section references Alejandro Colomar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240616011920.1627949-5-kolyshkin@gmail.com \
--to=kolyshkin@gmail.com \
--cc=alx@kernel.org \
--cc=linux-man@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox