* include/sys/stat.h (struct __stat64): Change st_size type to
__int64. * include/wchar.h (struct __stat64): Change st_size type to __int64.
This commit is contained in:
parent
37d5841f83
commit
4c9f0d3547
|
@ -1,3 +1,9 @@
|
|||
2005-01-17 Danny Smith <dannysmith@users.sourceforge.net>
|
||||
|
||||
* include/sys/stat.h (struct __stat64): Change st_size type to
|
||||
__int64.
|
||||
* include/wchar.h (struct __stat64): Change st_size type to __int64.
|
||||
|
||||
2005-01-13 Earnie Boyd <earnie@users.sf.net>
|
||||
|
||||
* include/sys/stat.h (_S_IFLNK, S_IFLNK, _S_ISLNK, S_ISLNK, _lstat,
|
||||
|
|
|
@ -141,7 +141,7 @@ struct __stat64
|
|||
short st_uid;
|
||||
short st_gid;
|
||||
_dev_t st_rdev;
|
||||
_off_t st_size;
|
||||
__int64 st_size;
|
||||
__time64_t st_atime;
|
||||
__time64_t st_mtime;
|
||||
__time64_t st_ctime;
|
||||
|
|
|
@ -426,7 +426,7 @@ struct __stat64
|
|||
short st_uid;
|
||||
short st_gid;
|
||||
_dev_t st_rdev;
|
||||
_off_t st_size;
|
||||
__int64 st_size;
|
||||
__time64_t st_atime;
|
||||
__time64_t st_mtime;
|
||||
__time64_t st_ctime;
|
||||
|
|
Loading…
Reference in New Issue