diff options
author | Michael I. Bushnell <mib@gnu.org> | 1993-10-27 23:26:02 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1993-10-27 23:26:02 +0000 |
commit | 6ec519e3afae398ab7e0fd14d6508cd3549fb712 (patch) | |
tree | 0765cd01261754c43f886b70e53ce538db97d46e | |
parent | 46df8d32b13a63ccad0298d71ade6de4e676814f (diff) |
Formerly io.defs.~50~
-rw-r--r-- | hurd/io.defs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hurd/io.defs b/hurd/io.defs index 0ab4f4ae..d1b1eaca 100644 --- a/hurd/io.defs +++ b/hurd/io.defs @@ -32,7 +32,7 @@ IO_IMPORTS routine io_write ( io_object: io_t; data: data_t; - offset: int; + offset: off_t; out amount: int); /* Read data from an IO object. If offset if -1, read from the object @@ -42,16 +42,16 @@ routine io_write ( routine io_read ( io_object: io_t; out data: data_t; - offset: int; + offset: off_t; amount: int); /* Change current read/write offset */ /* INTR */ routine io_seek ( io_object: io_t; - offset: int; + offset: off_t; whence: int; - out newp: int); + out newp: off_t); /* Tell how much data can be read from the object without blocking for a "long time" (this should be the same meaning of "long time" used |