home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
compcomp
/
gnuawk
/
dup2.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1989-09-25
|
136 b
|
13 lines
#ifndef F_DUPFD
#include <fcntl.h>
#endif
int
dup2 (old, new)
int old, new;
{
(void) close(new);
return fcntl(old, F_DUPFD, new);
}