2 * Copyright 2004-2009, Axel Dörfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
10 #include <errno_private.h>
12 #include <syscall_utils.h>
18 RETURN_AND_SET_ERRNO(_kern_dup(fd
));
23 dup2(int oldFD
, int newFD
)
25 RETURN_AND_SET_ERRNO(_kern_dup2(oldFD
, newFD
));