[Libsysio-commit] HEAD: libsysio/src stat64.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2003-10-21 02:05:11
|
Update of /cvsroot/libsysio/libsysio/src In directory sc8-pr-cvs1:/tmp/cvs-serv11995 Modified Files: stat64.c Log Message: From Wally Wang at Cray; A typo of _LARGEFILE64_SOURCE and statvfs in the 64-bit variety wasn't being built. Fixed now. Index: stat64.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/src/stat64.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -w -b -B -p -r1.4 -r1.5 --- stat64.c 10 Oct 2003 18:50:31 -0000 1.4 +++ stat64.c 21 Oct 2003 01:13:58 -0000 1.5 @@ -41,7 +41,7 @@ * le...@sa... */ -#ifdef _LARGFILE64_SOURCE +#ifdef _LARGEFILE64_SOURCE #include <errno.h> #include <assert.h> |