home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
unix
/
gawk.sit
/
source
/
missing.d
/
dup2.c
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1990-08-20
|
136 b
|
13 lines
|
[
TEXT/MPS
]
#ifndef F_DUPFD
#include <fcntl.h>
#endif
int
dup2 (old, new)
int old, new;
{
(void) close(new);
return fcntl(old, F_DUPFD, new);
}