summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Booth <colin@heliocat.net>2020-03-30 17:48:53 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2020-03-30 18:20:42 +0000
commit5b4169f484ad2aac76c816503142067363b2c332 (patch)
tree295faf13a148eefaa20e0eda7b9c1f61381ebc25
parentab3af99b8537d7b106c7857ae29c9494926cef03 (diff)
downloadskalibs-5b4169f484ad2aac76c816503142067363b2c332.tar.xz
skalibs: fix html errors
Signed-off-by: Colin Booth <colin@heliocat.net>
-rw-r--r--doc/index.html1
-rw-r--r--doc/libbiguint/index.html1
-rw-r--r--doc/libstddjb/allreadwrite.html4
-rw-r--r--doc/libstddjb/selfpipe.html8
-rw-r--r--doc/libstddjb/tai.html2
-rw-r--r--doc/upgrade.html2
6 files changed, 8 insertions, 10 deletions
diff --git a/doc/index.html b/doc/index.html
index ff780b5..88a883e 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -132,7 +132,6 @@ includes libraries for Scheme programming </li>
<ul>
<li> <tt>skalibs</tt> is discussed on the
<a href="//skarnet.org/lists.html#skaware">skaware</a> mailing-list. </li>
- </li>
</ul>
</body>
diff --git a/doc/libbiguint/index.html b/doc/libbiguint/index.html
index a7796a0..101b7b7 100644
--- a/doc/libbiguint/index.html
+++ b/doc/libbiguint/index.html
@@ -313,7 +313,6 @@ unsigned int bn ;
</pre>
<p>
-</p>
<tt>bu_gcd()</tt> computes the greatest common divisor between <tt>a</tt>
and <tt>b</tt>, and stores it into <tt>r</tt>. It returns 1 if all went well.
</p>
diff --git a/doc/libstddjb/allreadwrite.html b/doc/libstddjb/allreadwrite.html
index 3e6c9c9..0dd5ea0 100644
--- a/doc/libstddjb/allreadwrite.html
+++ b/doc/libstddjb/allreadwrite.html
@@ -124,7 +124,7 @@ function.
<p>
<code> size_t allread (int fd, char *s, size_t len) </code> <br />
-Equivalent to <code> allreadwrite(&fd_read, fd, s, len) </code>: attempts
+Equivalent to <code> allreadwrite(&amp;fd_read, fd, s, len) </code>: attempts
to read <em>len</em> bytes from <em>fd</em> into <em>s</em>, looping around
<tt>fd_read()</tt> if necessary, until either <em>len</em> bytes are read or
an error occurs. EOF is reported as EPIPE.
@@ -132,7 +132,7 @@ an error occurs. EOF is reported as EPIPE.
<p>
<code> size_t allwrite (int fd, char const *s, size_t len) </code> <br />
-Equivalent to <code> allreadwrite((iofunc_t *)&fd_write, fd, s, len) </code>:
+Equivalent to <code> allreadwrite((iofunc_t *)&amp;fd_write, fd, s, len) </code>:
attempts to write <em>len</em> bytes from <em>s</em> to <em>fd</em>, looping
around <tt>fd_write()</tt> if necessary, until either <em>len</em> bytes are
written or an error occurs.
diff --git a/doc/libstddjb/selfpipe.html b/doc/libstddjb/selfpipe.html
index e056e57..4edbaf9 100644
--- a/doc/libstddjb/selfpipe.html
+++ b/doc/libstddjb/selfpipe.html
@@ -160,10 +160,10 @@ and -1 if it failed.
<pre>
int r ;
sigset_t set ;
-sigemptyset(&set) ;
-sigaddset(&set, SIGTERM) ;
-sigaddset(&set, SIGHUP) ;
-r = selfpipe_trapset(&set) ;
+sigemptyset(&amp;set) ;
+sigaddset(&amp;set, SIGTERM) ;
+sigaddset(&amp;set, SIGHUP) ;
+r = selfpipe_trapset(&amp;set) ;
</pre>
<p>
diff --git a/doc/libstddjb/tai.html b/doc/libstddjb/tai.html
index 6ffcff8..efd4346 100644
--- a/doc/libstddjb/tai.html
+++ b/doc/libstddjb/tai.html
@@ -350,7 +350,7 @@ codes.
<code> int tai_from_time_sysclock (tai_t *a, time_t t) <br />
int time_sysclock_from_tai (time_t *t, tai_t const *a) <br />
int tain_from_timeval_sysclock (tain_t *a, struct timeval const *tv) <br />
-int timeval_sysclock_from_tain (struct timeval *tv, tain_t const *a) <br /
+int timeval_sysclock_from_tain (struct timeval *tv, tain_t const *a) <br />
int tain_from_timespec_sysclock (tain_t *a, struct timespec const *ts) <br />
int timespec_sysclock_from_tain (struct timespec *ts, tain_t const *a) </code>
diff --git a/doc/upgrade.html b/doc/upgrade.html
index ef86938..6c97a5d 100644
--- a/doc/upgrade.html
+++ b/doc/upgrade.html
@@ -37,7 +37,7 @@
more closely. In particular, it's now possible to declare an out-of-path
compiler in <tt>CC</tt>. </li>
<li> <tt>tain_*</tt> functions dealing with wall clocks and stopwatches
-have been refactored. The <tt>--enable-clock</tt> and </tt>--enable-monotonic</tt>
+have been refactored. The <tt>--enable-clock</tt> and <tt>--enable-monotonic</tt>
configure switches have been removed. <tt>tain_now()</tt> can now be told at run
time to use a wall clock (default, or via <tt>tain_now_set_wallclock()</tt>) or a
stopwatch (via <tt>tain_now_set_stopwatch()</tt>), instead of it being fixed at