diff options
author | florian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2017-07-07 20:30:05 +0000 |
---|---|---|
committer | florian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2017-07-07 20:30:05 +0000 |
commit | a8d2679f5147eb5a9a67a90b5091c80704172538 (patch) | |
tree | 6ae5288fbc0da25e37a945d89d95c36a3658c60b | |
parent | 4cf6733e8d8a1d2590e8d48dbe15a9a4158c1a02 (diff) | |
download | fpc-a8d2679f5147eb5a9a67a90b5091c80704172538.tar.gz |
* revert r36666 as it interferes with r36664
git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@36671 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r-- | rtl/linux/sparc64/stat.inc | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/rtl/linux/sparc64/stat.inc b/rtl/linux/sparc64/stat.inc index 7b1025524b..dcd594c2a0 100644 --- a/rtl/linux/sparc64/stat.inc +++ b/rtl/linux/sparc64/stat.inc @@ -19,22 +19,20 @@ { do NOT declare this record as packed, because it needs to be aligned } { to its largest member (i.e., 8 bytes), and declaring it as packed } { disables that } - { extracted from "/usr/sparc64-linux-gnu/include/bits/stat.h" line 38 } Stat = record // No unix typing because of differences st_dev : culong; - __pad1 : cushort; st_ino : culong; - st_mode : cuint; - st_nlink : cuint; + st_nlink : culong; + st_mode : cuint; st_uid : cuint; st_gid : cuint; + __pad0 : cuint; st_rdev : culong; - __pad2 : cushort; - st_size : clonglong; - st_blksize: culong; - st_blocks : culong; + st_size : clong; + st_blksize: clong; + st_blocks : clong; st_atime : culong; st_atime_nsec : culong; |