home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
unix
/
gawk.sit
/
source
/
missing.d
/
dup2.c
next >
Wrap
Text File
|
1990-08-19
|
136b
|
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);
}