[Libsysio-commit] HEAD: libsysio/include sysio.h
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2003-10-29 00:10:47
|
Update of /cvsroot/libsysio/libsysio/include In directory sc8-pr-cvs1:/tmp/cvs-serv12663/include Modified Files: sysio.h Log Message: Add prototype for lseek and fix bug in _sysio_lseek (from Wally Wang) that makes the temporary offset a _SYSIO_OFF_T instead of off_t. Index: sysio.h =================================================================== RCS file: /cvsroot/libsysio/libsysio/include/sysio.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -w -b -B -p -r1.12 -r1.13 --- sysio.h 21 Oct 2003 13:38:47 -0000 1.12 +++ sysio.h 29 Oct 2003 00:10:42 -0000 1.13 @@ -160,6 +160,7 @@ extern int fcntl(int fd, int cmd, ...); extern int fstat(int fd, struct stat *buf); extern int fsync(int fd); extern char *getcwd(char *buf, size_t size); +extern off_t lsee4(int fd, off_t offset, int whence); #if _LARGEFILE64_SOURCE extern off64_t lseek64(int fd, off64_t offset, int whence); #endif |