aboutsummaryrefslogtreecommitdiffstats
path: root/man3/finite.3
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2022-12-04 20:38:06 +0100
committerAlejandro Colomar <alx@kernel.org>2022-12-04 20:39:41 +0100
commitb324e17d3208c940622ab192609b836928d5aa8d (patch)
treede6403ed6aaad3b403607aeb1624f2b193e50590 /man3/finite.3
parent0137c7f49c178c14c230a0b89e2979732a52e6df (diff)
downloadman-pages-b324e17d3208c940622ab192609b836928d5aa8d.tar.gz
Many pages: wfix
Refer consistently to software versions. In most cases, it is done as <software> <version>. In the case of Linux and glibc, use the project name, instead of other terms such as 'kernel' or 'library'. I found the uses of inconsistent language with the following: $ find man* -type f \ | xargs grep -i '\(since\|before\|after\|until\|to\|from\|in\|between\|version\|with\) \(kernel\|version\|2\.\|3\.\|4\.\|5\.\)' \ | sort However, I might have missed some cases. Anyway, 99% consistency is pretty good consistency. We'll fix the remaining cases as we see them. Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to 'man3/finite.3')
-rw-r--r--man3/finite.310
1 files changed, 5 insertions, 5 deletions
diff --git a/man3/finite.3 b/man3/finite.3
index 3a67b6b82e..a4eb822b04 100644
--- a/man3/finite.3
+++ b/man3/finite.3
@@ -35,26 +35,26 @@ Feature Test Macro Requirements for glibc (see
.BR finitef (),
.BR finitel ():
.nf
- /* Glibc since 2.19: */ _DEFAULT_SOURCE
+ /* Glibc >= 2.19: */ _DEFAULT_SOURCE
|| /* Glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
.PP
.BR isinf ():
_XOPEN_SOURCE >= 600 || _ISOC99_SOURCE
- || /* Glibc since 2.19: */ _DEFAULT_SOURCE
+ || /* Glibc >= 2.19: */ _DEFAULT_SOURCE
|| /* Glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
.fi
.PP
.BR isinff (),
.BR isinfl ():
.nf
- /* Glibc since 2.19: */ _DEFAULT_SOURCE
+ /* Glibc >= 2.19: */ _DEFAULT_SOURCE
|| /* Glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
.fi
.PP
.BR isnan ():
.nf
_XOPEN_SOURCE || _ISOC99_SOURCE
- || /* Glibc since 2.19: */ _DEFAULT_SOURCE
+ || /* Glibc >= 2.19: */ _DEFAULT_SOURCE
|| /* Glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
.fi
.PP
@@ -62,7 +62,7 @@ Feature Test Macro Requirements for glibc (see
.BR isnanl ():
.nf
_XOPEN_SOURCE >= 600
- || /* Glibc since 2.19: */ _DEFAULT_SOURCE
+ || /* Glibc >= 2.19: */ _DEFAULT_SOURCE
|| /* Glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
.fi
.SH DESCRIPTION