exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / closedir.c
blob24b6bdacb1ceaf83c62aeffc76a91759c8a0bfc0
1 /* Stop reading the entries of a directory.
2 Copyright (C) 2006-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 <dirent.h>
22 #if REPLACE_FCHDIR
23 # include <unistd.h>
24 #endif
26 #include <stdlib.h>
28 #if HAVE_CLOSEDIR
30 /* Override closedir(), to keep track of the open file descriptors.
31 Needed because there is a function dirfd(). */
33 #endif
35 #if GNULIB_defined_DIR
36 # include "dirent-private.h"
37 #endif
39 int
40 closedir (DIR *dirp)
41 #undef closedir
43 #if GNULIB_defined_DIR || REPLACE_FCHDIR
44 int fd = dirfd (dirp);
45 #endif
46 int retval;
48 #if HAVE_DIRENT_H /* equivalent to HAVE_CLOSEDIR */
50 # if GNULIB_defined_DIR
51 retval = closedir (dirp->real_dirp);
52 if (retval >= 0)
53 free (dirp);
54 # else
55 retval = closedir (dirp);
56 # endif
58 #else
60 if (dirp->current != INVALID_HANDLE_VALUE)
61 FindClose (dirp->current);
62 free (dirp);
64 retval = 0;
66 #endif
68 #if GNULIB_defined_DIR
69 if (retval >= 0)
70 close (fd);
71 #elif REPLACE_FCHDIR
72 if (retval >= 0)
73 _gl_unregister_fd (fd);
74 #endif
76 return retval;