diff options
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,8 +28,8 @@ struct inode { // table mapping major device number to // device functions struct devsw { - int (*read)(struct inode*, char*, int); - int (*write)(struct inode*, char*, int); + int (*read)(struct inode*, int, uint64, int); + int (*write)(struct inode*, int, uint64, int); }; extern struct devsw devsw[]; |