Remove explicit far modifier to fix msdos compilation

git-svn-id: trunk@38765 -
This commit is contained in:
pierre 2018-04-13 22:19:34 +00:00
parent b917533a9f
commit 1e1603425d
3 changed files with 3 additions and 3 deletions

View File

@ -303,7 +303,7 @@ var
f: file;
oldexit : codepointer;
procedure MyExit;far;
procedure MyExit;
begin
ExitProc := OldExit;
RmDir(TestDir);

View File

@ -14,7 +14,7 @@ const
(* stream. Will Terminate executing program, as well as display info *)
(* on the type of error encountered. *)
(*************************************************************************)
Procedure StreamErrorProcedure(Var S: TStream); FAR;
Procedure StreamErrorProcedure(Var S: TStream);
Begin
If S.Status = StError then
Begin

View File

@ -14,7 +14,7 @@ const
(* stream. Will Terminate executing program, as well as display info *)
(* on the type of error encountered. *)
(*************************************************************************)
Procedure StreamErrorProcedure(Var S: TStream); FAR;
Procedure StreamErrorProcedure(Var S: TStream);
Begin
If S.Status = StError then
Begin