*** empty log message ***

This commit is contained in:
florian 2000-11-14 23:41:34 +00:00
parent 0f8c810da7
commit ce76f8f658

23
tests/webtbf/tbug1238.pp Normal file
View File

@ -0,0 +1,23 @@
{ Source provided for Free Pascal Bug Report 1238 }
{ Submitted by "Mazen NEIFER" on 2000-11-14 }
{ e-mail: mazen_neifer@ayna.com }
PROGRAM Concat;
VAR
InputFile,OutputFile:File;
c:Char;
Buffer:Array[DWord]OF Byte;
ReadCount,WriteCount:DWord;
BEGIN
Assign(OutputFile,'Maple.tar.gz');
ReWrite(OutputFile,1);
FOR c:='a' TO 'n' DO
BEGIN
Assign(InputFile,'xa'+c);
Reset(InputFile,1);
BlockRead(InputFile,Buffer,SizeOf(Buffer),ReadCount);
BlockWrite(OutputFile,Buffer,SizeOf(Buffer),WriteCount);
Close(InputFile);
END;
Close(OutputFile);
END.