[Libsysio-commit] HEAD: libsysio/include sysio.h
Brought to you by:
lward
From: jaschut <ja...@us...> - 2005-02-23 01:43:18
|
Update of /cvsroot/libsysio/libsysio/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32478 Modified Files: sysio.h Log Message: Add missing prototype for existing function. Index: sysio.h =================================================================== RCS file: /cvsroot/libsysio/libsysio/include/sysio.h,v retrieving revision 1.33 retrieving revision 1.34 diff -u -w -b -B -p -r1.33 -r1.34 --- sysio.h 4 Feb 2005 00:16:44 -0000 1.33 +++ sysio.h 23 Feb 2005 01:43:08 -0000 1.34 @@ -172,6 +172,9 @@ extern int SYSIO_INTERFACE_NAME(dup)(int extern int SYSIO_INTERFACE_NAME(dup2)(int oldfd, int newfd); extern int SYSIO_INTERFACE_NAME(fcntl)(int fd, int cmd, ...); extern int SYSIO_INTERFACE_NAME(fstat)(int fd, struct stat *buf); +#if _LARGEFILE64_SOURCE +extern int SYSIO_INTERFACE_NAME(fstat64)(int fd, struct stat64 *buf); +#endif extern int SYSIO_INTERFACE_NAME(fsync)(int fd); extern char *SYSIO_INTERFACE_NAME(getcwd)(char *buf, size_t size); extern off_t SYSIO_INTERFACE_NAME(lseek)(int fd, off_t offset, int whence); |