On Fri, Jan 22, 2021 at 8:53 AM Eduardo A. Bustamante López <dual...@gmail.com> wrote: > These are worth highlighting: > > - Notice that the value returned by `fstat(0, ...)' indicates that /dev/null > in your system is a *regular* file (it should be `st_mode=S_IFCHR|0666', but > instead it is `st_mode=S_IFCHR|0666'). It also indicates that its size is 73 > bytes (`st_size=73').
I believe for the last part Eduardo meant to write: (it should be `st_mode=S_IFCHR|0666', but instead it is `st_mode=S_IFREG|0666')