Sign in
plan9port
/
plan9
/
53db2d0f6bfc971f44183f360f3db5a72edd948a
/
.
/
src
/
lib9
/
dup.c
blob: feec1b77dcb792e38a38ee40af88e35713fcd89b [
file
]
#include
<u.h>
#include
<libc.h>
#undef
dup
int
p9dup
(
int
old
,
int
new
)
{
if
(
new
==
-
1
)
return
dup
(
old
);
return
dup2
(
old
,
new
);
}