fpc/tests/webtbs/tw2812.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

19 lines
239 B
ObjectPascal

var
f:file;
p:pointer;
i : integer;
begin
Assign(f,'blockwritetest.tmp');
{$I-}
Rewrite(f,1);
p:=nil;
BlockWrite(f,p^,12345);
Close(f);
{$I+}
i:=ioresult;
writeln('IOResult: ',i);
if i=101 then
halt(1);
end.