0d15169fc7fbc825ee2f51696cb495054be14ce4
[debian/tar] / gnu / dup.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* Duplicate an open file descriptor.
4
5    Copyright (C) 2011-2013 Free Software Foundation, Inc.
6
7    This program is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 #include <config.h>
21
22 /* Specification.  */
23 #include <unistd.h>
24
25 #include <errno.h>
26
27 #include "msvc-inval.h"
28
29 #undef dup
30
31 #if HAVE_MSVC_INVALID_PARAMETER_HANDLER
32 static int
33 dup_nothrow (int fd)
34 {
35   int result;
36
37   TRY_MSVC_INVAL
38     {
39       result = dup (fd);
40     }
41   CATCH_MSVC_INVAL
42     {
43       result = -1;
44       errno = EBADF;
45     }
46   DONE_MSVC_INVAL;
47
48   return result;
49 }
50 #else
51 # define dup_nothrow dup
52 #endif
53
54 int
55 rpl_dup (int fd)
56 {
57   int result = dup_nothrow (fd);
58 #if REPLACE_FCHDIR
59   if (result >= 0)
60     result = _gl_register_dup (fd, result);
61 #endif
62   return result;
63 }