mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 09:19:23 +02:00
* Dup second arg must be var arg !
This commit is contained in:
parent
5befcfad1e
commit
ebb2c9f47d
@ -539,7 +539,7 @@ Function FSStat(Path:Pathstr;Var Info:statfs):Boolean;
|
|||||||
Function FSStat(Fd: Longint;Var Info:statfs):Boolean;
|
Function FSStat(Fd: Longint;Var Info:statfs):Boolean;
|
||||||
Function Fcntl(Fd:Text;Cmd:Integer):integer;
|
Function Fcntl(Fd:Text;Cmd:Integer):integer;
|
||||||
Procedure Fcntl(Fd:Text;Cmd:Integer;Arg:Longint);
|
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:text):Boolean;
|
||||||
Function Dup(var oldfile,newfile:file):Boolean;
|
Function Dup(var oldfile,newfile:file):Boolean;
|
||||||
Function Dup2(oldfile,newfile:longint):Boolean;
|
Function Dup2(oldfile,newfile:longint):Boolean;
|
||||||
@ -1708,7 +1708,7 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
Function Dup(oldfile,newfile:longint):Boolean;
|
Function Dup(oldfile:longint;var newfile:longint):Boolean;
|
||||||
{
|
{
|
||||||
Copies the filedescriptor oldfile to newfile
|
Copies the filedescriptor oldfile to newfile
|
||||||
}
|
}
|
||||||
@ -3520,7 +3520,10 @@ End.
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$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
|
Corrected wrong mode error in fdopen
|
||||||
|
|
||||||
Revision 1.28 1999/01/20 13:29:09 peter
|
Revision 1.28 1999/01/20 13:29:09 peter
|
||||||
|
Loading…
Reference in New Issue
Block a user