* fixed stat record for stat64 syscall

git-svn-id: trunk@5234 -
This commit is contained in:
tom_at_work 2006-11-05 10:21:43 +00:00
parent 1f0d411597
commit 479143a63e

View File

@ -25,7 +25,7 @@
{$IFNDEF FPC_USE_LIBC}
Stat = packed record // No unix typing because of differences
Stat = record // No unix typing because of differences
st_dev : culonglong;
st_ino : culonglong;
st_mode : cuint;
@ -35,16 +35,17 @@
st_rdev : culonglong;
__pad2 : cushort;
st_size : clonglong;
st_blksize: cint;
st_blksize: clong;
st_blocks : clonglong;
st_atime : cint;
st_atime_nsec : cuint;
st_mtime : cint;
st_mtime_nsec : cuint;
st_ctime : cint;
st_ctime_nsec : cuint;
__unused4 : cuint;
__unused5 : cuint;
st_atime : clong;
st_atime_nsec : culong;
st_mtime : clong;
st_mtime_nsec : culong;
st_ctime : clong;
__unused3 : culong;
__unused4 : culong;
__unused5 : culong;
end;
{$ELSE FPC_USE_LIBC}