From f3d5157564992f1ef9f390b3ce0c7d3706ba0f19 Mon Sep 17 00:00:00 2001
From: Laurent Bercot
Date: Sun, 4 Oct 2020 01:06:16 +0000
Subject: doc: fix URLs
---
doc/djblegacy.html | 6 +++---
doc/flags.html | 12 ++++++------
doc/index.html | 4 ++--
doc/libbiguint/index.html | 7 ++-----
doc/librandom/index.html | 4 ++--
doc/libskarnet.html | 2 +-
doc/libstddjb/alarm.html | 8 ++++----
doc/libstddjb/alloc.html | 2 +-
doc/libstddjb/allreadwrite.html | 12 ++++++------
doc/libstddjb/djbtime.html | 2 +-
doc/libstddjb/djbunix.html | 32 ++++++++++++++++----------------
doc/libstddjb/gccattributes.html | 2 +-
doc/libstddjb/index.html | 10 +++++-----
doc/libstddjb/iopause.html | 14 +++++++-------
doc/libstddjb/lolstdio.html | 14 +++++++-------
doc/libstddjb/safewrappers.html | 8 ++++----
doc/libstddjb/selfpipe.html | 6 +++---
doc/libstddjb/tai.html | 26 +++++++++++++-------------
doc/license.html | 2 +-
doc/upgrade.html | 6 +++---
20 files changed, 88 insertions(+), 91 deletions(-)
diff --git a/doc/djblegacy.html b/doc/djblegacy.html
index 6073497..dcf27cc 100644
--- a/doc/djblegacy.html
+++ b/doc/djblegacy.html
@@ -21,9 +21,9 @@
Who is this DJB guy, and why is he so special anyway ?
-Dan J. Bernstein is a cryptologist and
+Dan J. Bernstein is a cryptologist and
a mathematician; he's also the author of a widely known and used MTA,
-qmail, as well as a few
+qmail, as well as a few
lesser known pieces of software.
@@ -98,7 +98,7 @@ What do you do?
interfaces, even if it amounts to cramming a square peg into a
round hole. This is why buffer overflows exist. This is why
people use abominations such as
-gets(),
+gets(),
which is still in the Single Unix Specification as of version 4,
in freaking June 2011. This is why the System V
initialization scheme is still prevalent in Linux distributions,
diff --git a/doc/flags.html b/doc/flags.html
index 7aa8f95..2f89068 100644
--- a/doc/flags.html
+++ b/doc/flags.html
@@ -27,7 +27,7 @@ uncommon options; this page explains what they are for.
This flag tells configure that you want to install skalibs according to
-the slashpackage convention.
+the slashpackage convention.
If you enable it, and $v is the version of skalibs you're compiling,
make install will install the skalibs header files in
/package/prog/skalibs-$v/include, the static libraries in
@@ -63,11 +63,11 @@ to the installed skalibs shared libraries.
To understand what this flag is about - and the next two flags too - you
should start by reading
-this
+this
page about Unix time,
-which David Madore wrote after
+which David Madore wrote after
a long and fairly complete discussion we had on the subject. You can also
-read what DJB says about Unix time.
+read what DJB says about Unix time.
Unfortunately, when he says "the POSIX rules are so outrageously dumb (...)
that no self-respecting engineer would obey them", DJB is wrong: a lot of
people follow the POSIX rules. Or maybe he's right... and there are very,
@@ -85,7 +85,7 @@ uncommon, thing to do:
- ↑ The main advantage of this setup is that it makes your system clock
linear. In other words,
-gettimeofday()
+gettimeofday()
becomes suitable for both timestamping (which needs absolute time) and timeout
computations (which need reliable interval measurements); if your clock is
accurate enough, it can function as both a wall clock and a stopwatch.
@@ -105,7 +105,7 @@ or so.
- ↓ This setup is arguably not SUSv4 conformant (a strict
interpretation of Single Unix requires the system clock to be set to UTC).
- ↓ This setup is not compatible with
-ntpd. ntpd's design
+ntpd. ntpd's design
is flawed: it makes the mistake of setting the system clock itself - instead
of simply making the computed time available to other programs, one of which
could set the system clock - and it always sets it to UTC. (The
diff --git a/doc/index.html b/doc/index.html
index cca688f..7d86278 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -122,8 +122,8 @@ available for instance in the
libowfat
- Bruce Guenter's
bglibs
- - Paul Jarc's
-prjlibs, which also
+
- Paul Jarc's
+prjlibs, which also
includes libraries for Scheme programming
diff --git a/doc/libbiguint/index.html b/doc/libbiguint/index.html
index 101b7b7..f0378dd 100644
--- a/doc/libbiguint/index.html
+++ b/doc/libbiguint/index.html
@@ -24,7 +24,7 @@
operations on (unsigned) integers of arbitrary length. It is nowhere
near as powerful or efficient as specialized,
assembly language-optimized libraries such as
-GMP, but it has the advantages
+GMP, but it has the advantages
of smallness and simplicity.
@@ -381,10 +381,7 @@ The functions return 1 if all went well.
bu_invmod() computes the inverse of c modulo m
and stores it into c.
The divisor and m must be relatively prime, else
-those functions return 0 EDOM.
- The algorithm for modular division and inversion is due to
-Sheueling
-Chang Shantz.
+those functions return 0 EDOM.