diff options
Diffstat (limited to 'stat.h')
-rw-r--r-- | stat.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,7 +1,7 @@ struct stat { - int dev; - uint ino; - short type; - short nlink; - uint size; + int dev; // Device number + uint ino; // Inode number on device + short type; // Type of file + short nlink; // Number of links to file + uint size; // Size of file in bytes }; |