1234567891011121314151617181920212223242526272829303132333435 |
- --- dosfstools-3.0.26.orig/src/io.h 2014-02-08 18:53:10.000000000 +0100
- +++ dosfstools-3.0.26/src/io.h 2014-03-26 13:27:15.000000000 +0100
- @@ -27,9 +27,9 @@
- #ifndef _IO_H
- #define _IO_H
-
- -#include <fcntl.h> /* for loff_t */
- +#include <fcntl.h> /* for off_t */
-
- -loff_t llseek(int fd, loff_t offset, int whence);
- +off_t llseek(int fd, off_t offset, int whence);
-
-
-
- @@ -38,17 +38,17 @@ void fs_open(char *path, int rw);
-
-
- -void fs_read(loff_t pos, int size, void *data);
- +void fs_read(off_t pos, int size, void *data);
-
-
-
- -int fs_test(loff_t pos, int size);
- +int fs_test(off_t pos, int size);
-
-
-
- -void fs_write(loff_t pos, int size, void *data);
- +void fs_write(off_t pos, int size, void *data);
-
-
|