* use ptrint

This commit is contained in:
peter 2004-11-02 08:04:03 +00:00
parent 89b40a3682
commit 10db34aa26
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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');