Added a field to track the file position to struct file_descriptor

(seek() moved from the fs to the vfs).


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1447 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2002-10-08 00:11:10 +00:00
parent 123b5d67ad
commit a03cb82272

View File

@ -50,6 +50,7 @@ struct file_descriptor {
} u;
void *cookie;
int32 open_mode;
off_t pos;
};