diff options
author | Colin Booth <colin@heliocat.net> | 2020-03-30 17:48:53 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2020-03-30 18:20:42 +0000 |
commit | 5b4169f484ad2aac76c816503142067363b2c332 (patch) | |
tree | 295faf13a148eefaa20e0eda7b9c1f61381ebc25 /doc/libstddjb | |
parent | ab3af99b8537d7b106c7857ae29c9494926cef03 (diff) | |
download | skalibs-5b4169f484ad2aac76c816503142067363b2c332.tar.xz |
skalibs: fix html errors
Signed-off-by: Colin Booth <colin@heliocat.net>
Diffstat (limited to 'doc/libstddjb')
-rw-r--r-- | doc/libstddjb/allreadwrite.html | 4 | ||||
-rw-r--r-- | doc/libstddjb/selfpipe.html | 8 | ||||
-rw-r--r-- | doc/libstddjb/tai.html | 2 |
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(&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 *)&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(&set) ; +sigaddset(&set, SIGTERM) ; +sigaddset(&set, SIGHUP) ; +r = selfpipe_trapset(&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> |