exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / fdopen.c
blob5a8cd535d13157bd57bcc30c4c7f0f945bdacc6b
1 /* Open a stream with a given file descriptor.
2 Copyright (C) 2011-2024 Free Software Foundation, Inc.
4 This file is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) any later version.
9 This file is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 #include <config.h>
19 /* Specification. */
20 #include <stdio.h>
22 #include <errno.h>
24 #if HAVE_MSVC_INVALID_PARAMETER_HANDLER
25 # include "msvc-inval.h"
26 #endif
28 #undef fdopen
30 #if defined _WIN32 && !defined __CYGWIN__
31 # if HAVE_MSVC_INVALID_PARAMETER_HANDLER
32 static FILE *
33 fdopen_nothrow (int fd, const char *mode)
35 FILE *result;
37 TRY_MSVC_INVAL
39 result = _fdopen (fd, mode);
41 CATCH_MSVC_INVAL
43 result = NULL;
45 DONE_MSVC_INVAL;
47 return result;
49 # else
50 # define fdopen_nothrow _fdopen
51 # endif
52 #else
53 # define fdopen_nothrow fdopen
54 #endif
56 FILE *
57 rpl_fdopen (int fd, const char *mode)
59 int saved_errno = errno;
60 FILE *fp;
62 errno = 0;
63 fp = fdopen_nothrow (fd, mode);
64 if (fp == NULL)
66 if (errno == 0)
67 errno = EBADF;
69 else
70 errno = saved_errno;
72 return fp;