* Dup second arg must be var arg !

This commit is contained in:
pierre 1999-02-22 10:32:10 +00:00
parent 5befcfad1e
commit ebb2c9f47d

View File

@ -539,7 +539,7 @@ Function FSStat(Path:Pathstr;Var Info:statfs):Boolean;
Function FSStat(Fd: Longint;Var Info:statfs):Boolean;
Function Fcntl(Fd:Text;Cmd:Integer):integer;
Procedure Fcntl(Fd:Text;Cmd:Integer;Arg:Longint);
Function Dup(oldfile,newfile:longint):Boolean;
Function Dup(oldfile:longint;var newfile:longint):Boolean;
Function Dup(var oldfile,newfile:text):Boolean;
Function Dup(var oldfile,newfile:file):Boolean;
Function Dup2(oldfile,newfile:longint):Boolean;
@ -1708,7 +1708,7 @@ begin
end;
Function Dup(oldfile,newfile:longint):Boolean;
Function Dup(oldfile:longint;var newfile:longint):Boolean;
{
Copies the filedescriptor oldfile to newfile
}
@ -3520,7 +3520,10 @@ End.
{
$Log$
Revision 1.29 1999-02-02 21:19:54 michael
Revision 1.30 1999-02-22 10:32:10 pierre
* Dup second arg must be var arg !
Revision 1.29 1999/02/02 21:19:54 michael
Corrected wrong mode error in fdopen
Revision 1.28 1999/01/20 13:29:09 peter