mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-07 18:50:25 +02:00
* use ptrint
This commit is contained in:
parent
89b40a3682
commit
10db34aa26
@ -5,7 +5,7 @@ type
|
||||
TMyRec = record
|
||||
x: Integer;
|
||||
end;
|
||||
TMyArray = array[LongWord] of TMyRec;
|
||||
TMyArray = array[Ptrint] of TMyRec;
|
||||
PMyArray = ^TMyArray;
|
||||
var
|
||||
a: PMyArray;
|
||||
|
@ -6,7 +6,7 @@ PROGRAM Concat;
|
||||
VAR
|
||||
InputFile,OutputFile:File;
|
||||
c:Char;
|
||||
Buffer:Array[DWord]OF Byte;
|
||||
Buffer:Array[PtrInt]OF Byte;
|
||||
ReadCount,WriteCount:DWord;
|
||||
BEGIN
|
||||
Assign(OutputFile,'Maple.tar.gz');
|
||||
|
Loading…
Reference in New Issue
Block a user