summaryrefslogtreecommitdiff
path: root/src/files.h
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2011-04-24 23:55:42 +0400
committerAndrey Nazarov <skuller@skuller.net>2011-04-25 12:24:24 +0400
commit396285b78b11f7bd2e6f6cf0535c386053d84f43 (patch)
tree2933cb1a06b0f2c107c627dfec297ba01c3ad10b /src/files.h
parent51b091d9a98ddfb7d64da994ec87331ec6f7758e (diff)
Implement FS_Seek for physical files.
Diffstat (limited to 'src/files.h')
-rw-r--r--src/files.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/files.h b/src/files.h
index 9a65096..38d4088 100644
--- a/src/files.h
+++ b/src/files.h
@@ -144,7 +144,7 @@ ssize_t FS_ReadLine( qhandle_t f, char *buffer, size_t size );
void FS_Flush( qhandle_t f );
ssize_t FS_Tell( qhandle_t f );
-//qerror_t FS_Seek( qhandle_t f, size_t offset );
+qerror_t FS_Seek( qhandle_t f, off_t offset );
ssize_t FS_Length( qhandle_t f );