mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
14 lines
171 B
C
14 lines
171 B
C
|
#include "wrap.h"
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int
|
||
|
m3_dup2(int oldd, int newd)
|
||
|
{
|
||
|
int result;
|
||
|
|
||
|
ENTER_CRITICAL;
|
||
|
result = dup2(oldd, newd);
|
||
|
EXIT_CRITICAL;
|
||
|
return result;
|
||
|
}
|