summaryrefslogtreecommitdiffstats
path: root/man3type
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2023-05-03 00:48:14 +0200
committerAlejandro Colomar <alx@kernel.org>2023-05-03 00:48:22 +0200
commitfe5dba139dc089eae4061fdc17f087e71f48b198 (patch)
tree54af56b1b0138bde9a21e99372ab68ce4d64564a /man3type
parent5a0d9ed151e6449d978fabdd654cacc17b20a235 (diff)
man*/, man.ignore.grep: srcfix; warn about blank lines
- Use the dummy character to avoid warnings in examples. - Re-enable the warning. Suggested-by: "G. Branden Robinson" <g.branden.robinson@gmail.com> Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to 'man3type')
-rw-r--r--man3type/epoll_event.3type2
-rw-r--r--man3type/stat.3type6
2 files changed, 4 insertions, 4 deletions
diff --git a/man3type/epoll_event.3type b/man3type/epoll_event.3type
index 4806bca66..efb229fd3 100644
--- a/man3type/epoll_event.3type
+++ b/man3type/epoll_event.3type
@@ -41,7 +41,7 @@ with a slightly different definition:
.in +4n
.EX
#include <linux/eventpoll.h>
-
+\&
struct epoll_event {
__poll_t events;
__u64 data;
diff --git a/man3type/stat.3type b/man3type/stat.3type
index dd3c0aca5..939dc3c8f 100644
--- a/man3type/stat.3type
+++ b/man3type/stat.3type
@@ -25,15 +25,15 @@ Standard C library
.BR " off_t st_size;" " /* Total size, in bytes */"
.BR " blksize_t st_blksize;" " /* Block size for filesystem I/O */"
.BR " blkcnt_t st_blocks;" " /* Number of 512 B blocks allocated */"
-
+\&
/* Since POSIX.1-2008, this structure supports nanosecond
precision for the following timestamp fields.
For the details before POSIX.1-2008, see VERSIONS. */
-
+\&
.BR " struct timespec st_atim;" " /* Time of last access */"
.BR " struct timespec st_mtim;" " /* Time of last modification */"
.BR " struct timespec st_ctim;" " /* Time of last status change */"
-
+\&
.BR "#define st_atime st_atim.tv_sec" " /* Backward compatibility */"
.B "#define st_mtime st_mtim.tv_sec"
.B "#define st_ctime st_ctim.tv_sec"