mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-05 21:46:08 +02:00
* fixed compilation on 64 bit cpus
git-svn-id: trunk@8333 -
This commit is contained in:
parent
a57f9e0672
commit
cce61fa602
@ -39,7 +39,10 @@ type
|
|||||||
totalhigh: culong; //* Total high memory size */
|
totalhigh: culong; //* Total high memory size */
|
||||||
freehigh: culong; //* Available high memory size */
|
freehigh: culong; //* Available high memory size */
|
||||||
mem_unit: cuint; //* Memory unit size in bytes */
|
mem_unit: cuint; //* Memory unit size in bytes */
|
||||||
|
{$ifndef cpu64}
|
||||||
|
{ the upper bound of the array below is negative for 64 bit cpus }
|
||||||
_f: array[0..19-2*sizeof(clong)-sizeof(cint)] of cChar; //* Padding: libc5 uses this.. */
|
_f: array[0..19-2*sizeof(clong)-sizeof(cint)] of cChar; //* Padding: libc5 uses this.. */
|
||||||
|
{$endif cpu64}
|
||||||
end;
|
end;
|
||||||
PSysInfo = ^TSysInfo;
|
PSysInfo = ^TSysInfo;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user