Hello,
I'm under the impression that I found three typing errors in stat(2).
Used distribution: "Ubuntu 18.04.5 LTS"
Also appears in: "https://man7.org/linux/man-pages/man2/stat.2.html"
There are three Letters "e" missing in Section "DESCRIPTION", Subsection "The
stat structure":
struct timespec st_atim; /* Time of last access */
struct timespec st_mtim; /* Time of last modification */
sruct timespec st_ctim; /* Time of last status change */
should possibly be:
struct timespec st_atime; /* Time of last access */
struct timespec st_mtime; /* Time of last modification */
sruct timespec st_ctime; /* Time of last status change */