summaryrefslogtreecommitdiff
path: root/doc/libstddjb
diff options
context:
space:
mode:
Diffstat (limited to 'doc/libstddjb')
-rw-r--r--doc/libstddjb/allreadwrite.html4
-rw-r--r--doc/libstddjb/selfpipe.html8
-rw-r--r--doc/libstddjb/tai.html2
3 files changed, 7 insertions, 7 deletions
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>