The st_rdev field was missing in our my_stat structure, so it wasn't binary compatible with R5 struct stat.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11570 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2005-03-04 00:36:14 +00:00
parent c64ead1580
commit d139bc986a
@@ -125,6 +125,7 @@ struct my_stat {
my_uid_t uid; /* user id of the owner of this file */
my_gid_t gid; /* group id of the owner of this file */
fs_off_t size; /* size in bytes of this file */
dev_t rdev; /* device type (not used) */
size_t blksize; /* preferred block size for i/o */
time_t atime; /* last access time */
time_t mtime; /* last modification time */