[Libsysio-commit] HEAD: libsysio/include sysio.h
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2006-03-14 20:13:17
|
Update of /cvsroot/libsysio/libsysio/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23600 Modified Files: sysio.h Log Message: From Jim Schutt at Sandia, we are missing the declaration for lstat64. His patch applied with this rev. Index: sysio.h =================================================================== RCS file: /cvsroot/libsysio/libsysio/include/sysio.h,v retrieving revision 1.35 retrieving revision 1.36 diff -u -w -b -B -p -r1.35 -r1.36 --- sysio.h 28 Oct 2005 17:59:31 -0000 1.35 +++ sysio.h 14 Mar 2006 20:13:05 -0000 1.36 @@ -175,6 +175,7 @@ extern int SYSIO_INTERFACE_NAME(fcntl64) 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); +extern int SYSIO_INTERFACE_NAME(lstat64)(const char *path, struct stat64 *buf); #endif extern int SYSIO_INTERFACE_NAME(fsync)(int fd); extern char *SYSIO_INTERFACE_NAME(getcwd)(char *buf, size_t size); |