mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 03:46:10 +02:00
* fix the stupid pascal names in x86_64 linux stat
git-svn-id: trunk@8020 -
This commit is contained in:
parent
5c1296e87b
commit
b0fde4700f
@ -69,24 +69,24 @@
|
|||||||
Stat = record
|
Stat = record
|
||||||
case Byte of
|
case Byte of
|
||||||
0:(dev: cuLong deprecated;
|
0:(dev: cuLong deprecated;
|
||||||
st_ino: cuLong deprecated;
|
ino: cuLong deprecated;
|
||||||
st_nlink: cuLong deprecated;
|
nlink: cuLong deprecated;
|
||||||
|
|
||||||
st_mode: cuInt deprecated;
|
mode: cuInt deprecated;
|
||||||
st_uid: cuInt deprecated;
|
uid: cuInt deprecated;
|
||||||
st_gid: cuInt deprecated;
|
gid: cuInt deprecated;
|
||||||
__pad0: cuInt deprecated;
|
__pad0: cuInt deprecated;
|
||||||
st_rdev: cuLong deprecated;
|
rdev: cuLong deprecated;
|
||||||
st_size: cLong deprecated;
|
size: cLong deprecated;
|
||||||
st_blksize: cLong deprecated;
|
blksize: cLong deprecated;
|
||||||
st_blocks: cLong deprecated; //* Number 512-byte blocks allocated. */
|
blocks: cLong deprecated; //* Number 512-byte blocks allocated. */
|
||||||
|
|
||||||
st_atime: cuLong deprecated;
|
atime: cuLong deprecated;
|
||||||
st_atime_nsec: cuLong deprecated;
|
atime_nsec: cuLong deprecated;
|
||||||
st_mtime: cuLong deprecated;
|
mtime: cuLong deprecated;
|
||||||
st_mtime_nsec: cuLong deprecated;
|
mtime_nsec: cuLong deprecated;
|
||||||
st_ctime: cuLong deprecated;
|
ctime: cuLong deprecated;
|
||||||
st_ctime_nsec: cuLong deprecated;
|
ctime_nsec: cuLong deprecated;
|
||||||
__unused: array[0..2] of cLong deprecated;);
|
__unused: array[0..2] of cLong deprecated;);
|
||||||
|
|
||||||
1:(st_dev: cuLong;
|
1:(st_dev: cuLong;
|
||||||
@ -96,7 +96,7 @@
|
|||||||
st_mode: cuInt;
|
st_mode: cuInt;
|
||||||
st_uid: cuInt;
|
st_uid: cuInt;
|
||||||
st_gid: cuInt;
|
st_gid: cuInt;
|
||||||
__pad0: cuInt;
|
__pad1: cuInt;
|
||||||
st_rdev: cuLong;
|
st_rdev: cuLong;
|
||||||
st_size: cLong;
|
st_size: cLong;
|
||||||
st_blksize: cLong;
|
st_blksize: cLong;
|
||||||
@ -106,9 +106,9 @@
|
|||||||
st_atime_nsec: cuLong;
|
st_atime_nsec: cuLong;
|
||||||
st_mtime: cuLong;
|
st_mtime: cuLong;
|
||||||
st_mtime_nsec: cuLong;
|
st_mtime_nsec: cuLong;
|
||||||
st_ctime: cuLong;
|
st_ctime: cuLong;
|
||||||
st_ctime_nsec: cuLong;
|
st_ctime_nsec: cuLong;
|
||||||
__unused: array[0..2] of cLong);
|
__unused2: array[0..2] of cLong);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{$endif}
|
{$endif}
|
||||||
|
Loading…
Reference in New Issue
Block a user