fpc/tests/tbs/tb0014.pp
peter 06c7671945 * changed $ifdefs to %target
* removed obsolete dpmiexcp unit for go32v2
2002-12-24 22:31:26 +00:00

36 lines
494 B
ObjectPascal

{ Old file: tbs0017.pp }
{ }
const
nextoptpass : longint = 0;
procedure init;
const
endofparas : boolean = false;
procedure getparastring;
procedure nextopt;
begin
endofparas:=true;
getparastring;
inc(nextoptpass);
init;
end;
begin
if not endofparas then
nextopt;
end;
begin
getparastring;
end;
begin
init;
if nextoptpass<>1 then Halt(1);
end.