blob: b80bf9079286713e4b247e9168e89d569db4c68c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-aa,v 1.5 2001/01/07 14:44:19 tron Exp $
--- user/plugins/bochs/iodev/harddrv.h.orig Wed Jan 3 13:50:13 2001
+++ user/plugins/bochs/iodev/harddrv.h Sun Jan 7 12:10:34 2001
@@ -45,7 +45,7 @@
// Position ourselves. Return the resulting offset from the
// beginning of the file.
- virtual loff_t lseek (loff_t offset, int whence) = 0;
+ virtual off_t lseek (off_t offset, int whence) = 0;
// Read count bytes to the buffer buf. Return the number of
// bytes read (count).
@@ -71,7 +71,7 @@
// Position ourselves. Return the resulting offset from the
// beginning of the file.
- loff_t lseek (loff_t offset, int whence);
+ off_t lseek (off_t offset, int whence);
// Read count bytes to the buffer buf. Return the number of
// bytes read (count).
|