mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 22:06:40 +02:00
Remove explicit far modifier to fix msdos compilation
git-svn-id: trunk@38765 -
This commit is contained in:
parent
b917533a9f
commit
1e1603425d
@ -303,7 +303,7 @@ var
|
|||||||
f: file;
|
f: file;
|
||||||
oldexit : codepointer;
|
oldexit : codepointer;
|
||||||
|
|
||||||
procedure MyExit;far;
|
procedure MyExit;
|
||||||
begin
|
begin
|
||||||
ExitProc := OldExit;
|
ExitProc := OldExit;
|
||||||
RmDir(TestDir);
|
RmDir(TestDir);
|
||||||
|
@ -14,7 +14,7 @@ const
|
|||||||
(* stream. Will Terminate executing program, as well as display info *)
|
(* stream. Will Terminate executing program, as well as display info *)
|
||||||
(* on the type of error encountered. *)
|
(* on the type of error encountered. *)
|
||||||
(*************************************************************************)
|
(*************************************************************************)
|
||||||
Procedure StreamErrorProcedure(Var S: TStream); FAR;
|
Procedure StreamErrorProcedure(Var S: TStream);
|
||||||
Begin
|
Begin
|
||||||
If S.Status = StError then
|
If S.Status = StError then
|
||||||
Begin
|
Begin
|
||||||
|
@ -14,7 +14,7 @@ const
|
|||||||
(* stream. Will Terminate executing program, as well as display info *)
|
(* stream. Will Terminate executing program, as well as display info *)
|
||||||
(* on the type of error encountered. *)
|
(* on the type of error encountered. *)
|
||||||
(*************************************************************************)
|
(*************************************************************************)
|
||||||
Procedure StreamErrorProcedure(Var S: TStream); FAR;
|
Procedure StreamErrorProcedure(Var S: TStream);
|
||||||
Begin
|
Begin
|
||||||
If S.Status = StError then
|
If S.Status = StError then
|
||||||
Begin
|
Begin
|
||||||
|
Loading…
Reference in New Issue
Block a user