84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
30 lines
540 B
C
30 lines
540 B
C
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
|
|
int dup2(fd, fd2)
|
|
int fd, fd2;
|
|
{
|
|
/* The behavior of dup2 is defined by POSIX in 6.2.1.2 as almost, but not
|
|
* quite the same as fcntl.
|
|
*/
|
|
|
|
if (fd2 < 0 || fd2 > OPEN_MAX) {
|
|
errno = EBADF;
|
|
return(-1);
|
|
}
|
|
|
|
/* Check to see if fildes is valid. */
|
|
if (fcntl(fd, F_GETFL) < 0) {
|
|
/* 'fd' is not valid. */
|
|
return(-1);
|
|
} else {
|
|
/* 'fd' is valid. */
|
|
if (fd == fd2) return(fd2);
|
|
close(fd2);
|
|
return(fcntl(fd, F_DUPFD, fd2));
|
|
}
|
|
}
|