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