aboutsummaryrefslogtreecommitdiffstats
diff options
authorAlejandro Colomar <alx@kernel.org>2024-05-26 16:13:10 +0200
committerAlejandro Colomar <alx@kernel.org>2024-05-26 16:13:18 +0200
commite6dd8e38b96329c2af705aab43e689724b26e063 (patch)
treee0008c11dad8f578d576c796742879ddf02d0614
parent61a9bf9cfc11345f98654ea90c192973049315ca (diff)
downloadman-pages-e6dd8e38b96329c2af705aab43e689724b26e063.tar.gz
man3const/: Use STANDARDS and HISTORY instead of CONFORMING TO
This had been done in most pages already, but it seems I had forgotted about these pages. Fixes: 4131356cdab8 ("man*/, man-pages.7: VERSIONS, STANDARDS, HISTORY: Reorganize sections") Fixes: 3113c7f3b817 ("Many pages: Use STANDARDS instead of CONFORMING TO") Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r--man/man3const/EOF.3const7
-rw-r--r--man/man3const/EXIT_SUCCESS.3const7
-rw-r--r--man/man3const/NULL.3const7
3 files changed, 12 insertions, 9 deletions
diff --git a/man/man3const/EOF.3const b/man/man3const/EOF.3const
index f41d1d15a7..42ccebcbbc 100644
--- a/man/man3const/EOF.3const
+++ b/man/man3const/EOF.3const
@@ -26,9 +26,10 @@ is not a character
(it can't be represented by
.IR "unsigned char" ).
It is instead a sentinel value outside of the valid range for valid characters.
-.SH CONFORMING TO
-C99 and later;
-POSIX.1-2001 and later.
+.SH STANDARDS
+C11, POSIX.1-2008.
+.SH HISTORY
+C89, POSIX.1-2001.
.SH CAVEATS
Programs can't pass this value to an output function
to "write" the end of a file.
diff --git a/man/man3const/EXIT_SUCCESS.3const b/man/man3const/EXIT_SUCCESS.3const
index 260915eb8d..02b89be2fa 100644
--- a/man/man3const/EXIT_SUCCESS.3const
+++ b/man/man3const/EXIT_SUCCESS.3const
@@ -24,9 +24,10 @@ represent a successful and unsuccessful exit status respectively,
and can be used as arguments to the
.BR exit (3)
function.
-.SH CONFORMING TO
-C99 and later;
-POSIX.1-2001 and later.
+.SH STANDARDS
+C11, POSIX.1-2008.
+.SH HISTORY
+C89, POSIX.1-2001.
.SH EXAMPLES
.\" SRC BEGIN (EXIT_SUCCESS.c)
.EX
diff --git a/man/man3const/NULL.3const b/man/man3const/NULL.3const
index e395628a92..3aea0feca7 100644
--- a/man/man3const/NULL.3const
+++ b/man/man3const/NULL.3const
@@ -19,9 +19,10 @@ Standard C library
.B NULL
represents a null pointer constant,
that is, a pointer that does not point to anything.
-.SH CONFORMING TO
-C99 and later;
-POSIX.1-2001 and later.
+.SH STANDARDS
+C11, POSIX.1-2008.
+.SH HISTORY
+C89, POSIX.1-2001.
.SH NOTES
The following headers also provide
.BR NULL :