dup2: work around mingw and cygwin 1.5 bug
[pspp] / lib / dup2.c
1 /* Duplicate an open file descriptor to a specified file descriptor.
2
3    Copyright (C) 1999, 2004, 2005, 2006, 2007, 2009 Free Software
4    Foundation, Inc.
5
6    This program is free software: you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 /* written by Paul Eggert */
20
21 #include <config.h>
22
23 /* Specification.  */
24 #include <unistd.h>
25
26 #include <errno.h>
27 #include <fcntl.h>
28
29 #if REPLACE_DUP2
30 /* On mingw, dup2 exists, but always returns 0 for success.  */
31 int
32 dup2 (int fd, int desired_fd)
33 #undef dup2
34 {
35   int result = dup2 (fd, desired_fd);
36   if (result == 0)
37     result = desired_fd;
38   return result;
39 }
40
41 #else /* !REPLACE_DUP2 */
42 /* On older platforms, dup2 did not exist.  */
43
44 # ifndef F_DUPFD
45 static int
46 dupfd (int fd, int desired_fd)
47 {
48   int duplicated_fd = dup (fd);
49   if (duplicated_fd < 0 || duplicated_fd == desired_fd)
50     return duplicated_fd;
51   else
52     {
53       int r = dupfd (fd, desired_fd);
54       int e = errno;
55       close (duplicated_fd);
56       errno = e;
57       return r;
58     }
59 }
60 # endif
61
62 int
63 dup2 (int fd, int desired_fd)
64 {
65   if (fd == desired_fd)
66     return fd;
67   close (desired_fd);
68 # ifdef F_DUPFD
69   return fcntl (fd, F_DUPFD, desired_fd);
70 # else
71   return dupfd (fd, desired_fd);
72 # endif
73 }
74 #endif /* !REPLACE_DUP2 */